diff options
author | Max Horn | 2007-06-22 21:16:07 +0000 |
---|---|---|
committer | Max Horn | 2007-06-22 21:16:07 +0000 |
commit | 2fa0a5c457e0aea4edffb49aa80a04a59b6e9994 (patch) | |
tree | 2854c03af1f3fb30e1212d21013f491c6dcc9a6f /backends/platform/ds | |
parent | 54d668ac13f57d8acf5d8e627a5daeaa8166ecb3 (diff) | |
download | scummvm-rg350-2fa0a5c457e0aea4edffb49aa80a04a59b6e9994.tar.gz scummvm-rg350-2fa0a5c457e0aea4edffb49aa80a04a59b6e9994.tar.bz2 scummvm-rg350-2fa0a5c457e0aea4edffb49aa80a04a59b6e9994.zip |
Cleaning up after myself (I blame it on, err, uhh... the Vogons?)
svn-id: r27625
Diffstat (limited to 'backends/platform/ds')
-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')) { |