Update ime_dialog.h (#2853)

Fix the incorrect ORBIS_IME_DIALOG_MAX_TEXT_LENGTH; a larger value is required for at least the game Undertale
This commit is contained in:
Valdis Bogdāns
2025-04-27 20:57:20 +03:00
committed by GitHub
parent cef795b80b
commit 254375ef0c

View File

@@ -13,7 +13,7 @@ class SymbolsResolver;
namespace Libraries::ImeDialog {
constexpr u32 ORBIS_IME_DIALOG_MAX_TEXT_LENGTH = 0x78;
constexpr u32 ORBIS_IME_DIALOG_MAX_TEXT_LENGTH = 2048;
enum class Error : u32 {
OK = 0x0,