aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/CEActionsSmartphone.cpp
diff options
context:
space:
mode:
authorKostas Nakos2007-06-05 18:55:41 +0000
committerKostas Nakos2007-06-05 18:55:41 +0000
commitb6bc1ef9a6dff1d1a0f09f9331ee1b3ecb8736e0 (patch)
treec282c386de19099ae412be5c33fc4908ec547d91 /backends/platform/wince/CEActionsSmartphone.cpp
parentab6fb8e9c3cd6853f23f7251e891c13da9472a33 (diff)
downloadscummvm-rg350-b6bc1ef9a6dff1d1a0f09f9331ee1b3ecb8736e0.tar.gz
scummvm-rg350-b6bc1ef9a6dff1d1a0f09f9331ee1b3ecb8736e0.tar.bz2
scummvm-rg350-b6bc1ef9a6dff1d1a0f09f9331ee1b3ecb8736e0.zip
the FT cheat key is now called multi function key (pending commit for sucker punch in indy)
svn-id: r27111
Diffstat (limited to 'backends/platform/wince/CEActionsSmartphone.cpp')
-rw-r--r--backends/platform/wince/CEActionsSmartphone.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/platform/wince/CEActionsSmartphone.cpp b/backends/platform/wince/CEActionsSmartphone.cpp
index 042fc4bd55..081a2e6713 100644
--- a/backends/platform/wince/CEActionsSmartphone.cpp
+++ b/backends/platform/wince/CEActionsSmartphone.cpp
@@ -153,11 +153,11 @@ void CEActionsSmartphone::initInstanceGame() {
// Zone
_action_enabled[SMARTPHONE_ACTION_ZONE] = true;
// Multi function key
- _action_enabled[SMARTPHONE_ACTION_FT_CHEAT] = true;
+ _action_enabled[SMARTPHONE_ACTION_MULTI] = true;
if (is_agi)
- _key_action[SMARTPHONE_ACTION_FT_CHEAT].setAscii(SDLK_PAUSE);
+ _key_action[SMARTPHONE_ACTION_MULTI].setAscii(SDLK_PAUSE);
else
- _key_action[SMARTPHONE_ACTION_FT_CHEAT].setAscii(86); // shift-V
+ _key_action[SMARTPHONE_ACTION_MULTI].setAscii(86); // shift-V
// Bind keys
_action_enabled[SMARTPHONE_ACTION_BINDKEYS] = true;
}
@@ -179,7 +179,7 @@ bool CEActionsSmartphone::perform(GUI::ActionType action, bool pushed) {
return true;
case SMARTPHONE_ACTION_SAVE:
case SMARTPHONE_ACTION_SKIP:
- case SMARTPHONE_ACTION_FT_CHEAT:
+ case SMARTPHONE_ACTION_MULTI:
EventsBuffer::simulateKey(&_key_action[action], false);
return true;
}
@@ -189,7 +189,7 @@ bool CEActionsSmartphone::perform(GUI::ActionType action, bool pushed) {
switch (action) {
case SMARTPHONE_ACTION_SAVE:
case SMARTPHONE_ACTION_SKIP:
- case SMARTPHONE_ACTION_FT_CHEAT:
+ case SMARTPHONE_ACTION_MULTI:
EventsBuffer::simulateKey(&_key_action[action], true);
return true;
case SMARTPHONE_ACTION_RIGHTCLICK: