From 2729cafbe08d0b21fa7923d0eebef9f129e6e97a Mon Sep 17 00:00:00 2001 From: yellows8 Date: Fri, 29 Mar 2019 13:36:40 -0400 Subject: [PATCH] Updated ErrorContext struct. --- nx/include/switch/applets/error.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/applets/error.h b/nx/include/switch/applets/error.h index e9c95e75..1690a64a 100644 --- a/nx/include/switch/applets/error.h +++ b/nx/include/switch/applets/error.h @@ -28,8 +28,10 @@ typedef struct { /// Error context. typedef struct { - char str[0x1f4]; ///< String - u8 unk_x1f4[0xc]; ///< Unknown + u8 type; ///< Type + u8 pad[7]; ///< Padding + u8 data[0x1f4]; ///< Data + Result res; ///< Result } ErrorContext; /// Common header for the start of the arg storage.