From 6355ead6d3b8a66af8738e1771addb75109f2626 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sun, 23 Dec 2018 01:47:11 -0500 Subject: [PATCH] Fixed dicFlag type. --- nx/include/switch/applets/swkbd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nx/include/switch/applets/swkbd.h b/nx/include/switch/applets/swkbd.h index 4d15da51..0f97be17 100644 --- a/nx/include/switch/applets/swkbd.h +++ b/nx/include/switch/applets/swkbd.h @@ -23,7 +23,8 @@ typedef struct { u16 okButtonText[18/2]; u16 leftButtonText; u16 rightButtonText; - u16 dicFlag; ///< Enables dictionary usage when non-zero (including the system dictionary). + u8 dicFlag; ///< Enables dictionary usage when non-zero (including the system dictionary). + u8 pad_x1b; u32 keySetDisableBitmask; u32 initialCursorPos; ///< Initial cursor position in the string: 0 = start, 1 = end. u16 headerText[130/2];