From 8248d76964677a5d300e552aaf17f5e0fdafec71 Mon Sep 17 00:00:00 2001 From: David Marcec Date: Mon, 20 Jul 2020 11:52:07 +1000 Subject: Address issues --- src/core/hle/service/am/applets/software_keyboard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hle/service/am/applets/software_keyboard.cpp') diff --git a/src/core/hle/service/am/applets/software_keyboard.cpp b/src/core/hle/service/am/applets/software_keyboard.cpp index 4dd947dd1..289da2619 100644 --- a/src/core/hle/service/am/applets/software_keyboard.cpp +++ b/src/core/hle/service/am/applets/software_keyboard.cpp @@ -14,7 +14,7 @@ namespace Service::AM::Applets { namespace { -enum class Request : u32_le { +enum class Request : u32 { Finalize = 0x4, SetUserWordInfo = 0x6, SetCustomizeDic = 0x7, @@ -29,7 +29,7 @@ constexpr std::size_t SWKBD_OUTPUT_BUFFER_SIZE = 0x7D8; constexpr std::size_t SWKBD_OUTPUT_INTERACTIVE_BUFFER_SIZE = 0x7D4; constexpr std::size_t DEFAULT_MAX_LENGTH = 500; constexpr bool INTERACTIVE_STATUS_OK = false; -} // namespace +} // Anonymous namespace static Core::Frontend::SoftwareKeyboardParameters ConvertToFrontendParameters( KeyboardConfig config, std::u16string initial_text) { Core::Frontend::SoftwareKeyboardParameters params{}; -- cgit v1.2.3