From 91aade225a9329ac00e78fe442510e83cdce2734 Mon Sep 17 00:00:00 2001 From: Liam Minopulos Date: Thu, 28 Feb 2019 08:59:29 +0100 Subject: [PATCH] Use u8 instead of bool --- nx/include/switch/applets/error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/applets/error.h b/nx/include/switch/applets/error.h index c978dc75..afce21d2 100644 --- a/nx/include/switch/applets/error.h +++ b/nx/include/switch/applets/error.h @@ -10,7 +10,7 @@ /// Error configuration struct. typedef struct { - bool custom_text; ///< Whether to show a custom error message. If this is false, a default message will be shown. + u8 custom_text; ///< Whether to show a custom error message. If this is false, a default message will be shown. u8 pad[7]; u32 module; ///< Module code. u32 description; ///< Description code.