diff options
author | Lars Persson | 2007-06-08 20:41:35 +0000 |
---|---|---|
committer | Lars Persson | 2007-06-08 20:41:35 +0000 |
commit | e1fbe5f02f0ebb26f3ca1e1710e581471f3c47bc (patch) | |
tree | 5cd8b2249199984451f7657d67a15528323002cb | |
parent | d0d4c4da34e142ea05e3b8984392630f3cf03a69 (diff) | |
download | scummvm-rg350-e1fbe5f02f0ebb26f3ca1e1710e581471f3c47bc.tar.gz scummvm-rg350-e1fbe5f02f0ebb26f3ca1e1710e581471f3c47bc.tar.bz2 scummvm-rg350-e1fbe5f02f0ebb26f3ca1e1710e581471f3c47bc.zip |
Updated actions for SymbianOS
svn-id: r27215
-rw-r--r-- | backends/platform/symbian/src/SymbianActions.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/backends/platform/symbian/src/SymbianActions.cpp b/backends/platform/symbian/src/SymbianActions.cpp index 2c67c06bba..1b2e4e6aac 100644 --- a/backends/platform/symbian/src/SymbianActions.cpp +++ b/backends/platform/symbian/src/SymbianActions.cpp @@ -176,9 +176,13 @@ void SymbianActions::initInstanceGame() { // FT Cheat _action_enabled[ACTION_MULTI] = true; if (is_agi) - _key_action[ACTION_MULTI].setAscii(SDLK_PAUSE); + _key_action[ACTION_MULTI].setAscii(SDLK_PAUSE); // agi: show predictive dialog + else if (is_gob) + _key_action[ACTION_MULTI].setAscii(315); // bargon : F1 to start + else if (gameid == "atlantis") + _key_action[ACTION_MULTI].setAscii(SDLK_KP0); // fate of atlantis : Ins to sucker-punch else - _key_action[ACTION_MULTI].setAscii(86); // shift-V + _key_action[ACTION_MULTI].setAscii(86); // FT cheat : shift-V // Enable debugger _action_enabled[ACTION_DEBUGGER] = true; |