From 6b3951ae171e47b58778ef46d26d3cd37b28fb54 Mon Sep 17 00:00:00 2001 From: Liam Minopulos Date: Thu, 28 Feb 2019 08:59:38 +0100 Subject: [PATCH] Rename pad to unk --- nx/include/switch/applets/error.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/applets/error.h b/nx/include/switch/applets/error.h index afce21d2..1275b8c8 100644 --- a/nx/include/switch/applets/error.h +++ b/nx/include/switch/applets/error.h @@ -11,10 +11,10 @@ /// Error configuration struct. typedef struct { u8 custom_text; ///< Whether to show a custom error message. If this is false, a default message will be shown. - u8 pad[7]; + u8 unk[7]; u32 module; ///< Module code. u32 description; ///< Description code. - u8 pad2[8]; + u8 unk2[8]; char short_description[0x800]; ///< Short description. char detailed_description[0x800]; ///< Detailed description (displayed when the user clicks, on "Details"). } ErrorConfig;