diff options
Diffstat (limited to 'backends/platform/ds/arm9/source')
-rw-r--r-- | backends/platform/ds/arm9/source/touchkeyboard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/ds/arm9/source/touchkeyboard.cpp b/backends/platform/ds/arm9/source/touchkeyboard.cpp index 931f9a716a..8f7af668d8 100644 --- a/backends/platform/ds/arm9/source/touchkeyboard.cpp +++ b/backends/platform/ds/arm9/source/touchkeyboard.cpp @@ -117,7 +117,7 @@ key_data keys[DS_NUM_KEYS] = { {51, 29, 6, Common::KEYCODE_UP}, // Close button - {56, 30, 0, Common::KEYCODE_INALID}, + {56, 30, 0, Common::KEYCODE_INVALID}, }; @@ -237,7 +237,7 @@ void addKeyboardEvents() { Common::Event event; // consolePrintf("Key: %d\n", r); - if ((keys[r].character == Common::KEYCODE_INALID)) { + if ((keys[r].character == Common::KEYCODE_INVALID)) { // Close button DS::closed = true; } else if ((keys[r].character >= '0') && (keys[r].character <= '9')) { |