diff options
author | Lars Persson | 2007-06-09 21:13:47 +0000 |
---|---|---|
committer | Lars Persson | 2007-06-09 21:13:47 +0000 |
commit | 62ca2f9d51543be39489977bc1f541f665e21156 (patch) | |
tree | 53a7ce438fc69807e01050828f8c2eec1c2a88f8 /backends/platform/symbian/src | |
parent | a7e0fbe1a86d3ce7e2c387090ce1c373430dd289 (diff) | |
download | scummvm-rg350-62ca2f9d51543be39489977bc1f541f665e21156.tar.gz scummvm-rg350-62ca2f9d51543be39489977bc1f541f665e21156.tar.bz2 scummvm-rg350-62ca2f9d51543be39489977bc1f541f665e21156.zip |
Updated actions for paralall
svn-id: r27256
Diffstat (limited to 'backends/platform/symbian/src')
-rw-r--r-- | backends/platform/symbian/src/SymbianActions.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/backends/platform/symbian/src/SymbianActions.cpp b/backends/platform/symbian/src/SymbianActions.cpp index 1b2e4e6aac..2c13a407ed 100644 --- a/backends/platform/symbian/src/SymbianActions.cpp +++ b/backends/platform/symbian/src/SymbianActions.cpp @@ -138,7 +138,8 @@ void SymbianActions::initInstanceGame() { bool is_cine = (gameid == "cine"); bool is_touche = (gameid == "touche"); bool is_agi = (gameid == "agi"); - + bool is_parallaction = (gameid == "parallaction"); + Actions::initInstanceGame(); // Initialize keys for different actions @@ -156,6 +157,8 @@ void SymbianActions::initInstanceGame() { _key_action[ACTION_SAVE].setAscii(SDLK_F10); // F10 } else if (is_agi) { _key_action[ACTION_SAVE].setAscii(SDLK_ESCAPE); + } else if (is_parallaction) { + _key_action[ACTION_SAVE].setAscii(SDLK_s); } else { _key_action[ACTION_SAVE].setAscii(SDLK_F5); // F5 key } @@ -173,7 +176,7 @@ void SymbianActions::initInstanceGame() { // Zone _action_enabled[ACTION_ZONE] = true; - // FT Cheat + // Multi function key _action_enabled[ACTION_MULTI] = true; if (is_agi) _key_action[ACTION_MULTI].setAscii(SDLK_PAUSE); // agi: show predictive dialog |