diff options
author | Lars Persson | 2009-02-18 04:21:51 +0000 |
---|---|---|
committer | Lars Persson | 2009-02-18 04:21:51 +0000 |
commit | 4e98d781b9bab502c7a7c83a6d826155750348f5 (patch) | |
tree | 75be1ad3307be306b4362941224f7dfce63d9688 /backends/platform | |
parent | f0a0f3f609c3822a72788c75838ca418d66c9bb9 (diff) | |
download | scummvm-rg350-4e98d781b9bab502c7a7c83a6d826155750348f5.tar.gz scummvm-rg350-4e98d781b9bab502c7a7c83a6d826155750348f5.tar.bz2 scummvm-rg350-4e98d781b9bab502c7a7c83a6d826155750348f5.zip |
Updated actions with tucker and groovie.
svn-id: r38455
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/symbian/src/SymbianActions.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/backends/platform/symbian/src/SymbianActions.cpp b/backends/platform/symbian/src/SymbianActions.cpp index 6ad6ff75ce..b99d39708b 100644 --- a/backends/platform/symbian/src/SymbianActions.cpp +++ b/backends/platform/symbian/src/SymbianActions.cpp @@ -143,6 +143,8 @@ void SymbianActions::initInstanceGame() { bool is_lure = (gameid == "lure"); bool is_feeble = (gameid == "feeble"); bool is_drascula = (strncmp(gameid.c_str(), "drascula",8) == 0); + bool is_tucker = (gameid == "tucker"); + bool is_groovie = (gameid == "groovie"); Actions::initInstanceGame(); @@ -153,7 +155,7 @@ void SymbianActions::initInstanceGame() { // Save - if (is_simon || is_sword2 || is_gob || is_kyra || is_feeble) + if (is_simon || is_sword2 || is_gob || is_kyra || is_feeble || is_tucker || is_groovie) _action_enabled[ACTION_SAVE] = false; else { _action_enabled[ACTION_SAVE] = true; @@ -176,10 +178,10 @@ void SymbianActions::initInstanceGame() { _action_enabled[ACTION_QUIT] = true; // Skip text - if (!is_cine && !is_parallaction) + if (!is_cine && !is_parallaction && !is_groovie) _action_enabled[ACTION_SKIP_TEXT] = true; if (is_simon || is_sky || is_sword2 || is_queen || is_sword1 || is_gob || - is_saga || is_kyra || is_touche || is_lure || is_feeble || is_drascula) + is_saga || is_kyra || is_touche || is_lure || is_feeble || is_drascula || is_tucker) _key_action[ACTION_SKIP_TEXT].setKey(Common::KEYCODE_ESCAPE, Common::KEYCODE_ESCAPE); // Escape key else { _key_action[ACTION_SKIP_TEXT].setKey(SDLK_PERIOD); |