aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2006-04-22 07:32:06 +0000
committerLars Persson2006-04-22 07:32:06 +0000
commit37633732f1f2ee18543d485d5b8357b8edca0c70 (patch)
tree4d5472ae04943cd3aca488c8550606aaccc0e548
parent30b4b87f587283218eb19865633ce8a659fdd392 (diff)
downloadscummvm-rg350-37633732f1f2ee18543d485d5b8357b8edca0c70.tar.gz
scummvm-rg350-37633732f1f2ee18543d485d5b8357b8edca0c70.tar.bz2
scummvm-rg350-37633732f1f2ee18543d485d5b8357b8edca0c70.zip
Added F1 as save for ITE
svn-id: r22083
-rw-r--r--backends/symbian/src/SymbianActions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/symbian/src/SymbianActions.cpp b/backends/symbian/src/SymbianActions.cpp
index e42f134ada..1dc8dd41c4 100644
--- a/backends/symbian/src/SymbianActions.cpp
+++ b/backends/symbian/src/SymbianActions.cpp
@@ -139,9 +139,9 @@ void SymbianActions::initInstanceGame() {
// Save
if (is_simon || is_gob)
_action_enabled[ACTION_SAVE] = false;
- else if (is_queen) {
+ else if (is_queen || is_ite) {
_action_enabled[ACTION_SAVE] = true;
- _key_action[ACTION_SAVE].setAscii(SDLK_F1); // F1 key for FOTAQ or F5??!?
+ _key_action[ACTION_SAVE].setAscii(SDLK_F1); // F1 key for FOTAQ and ITE
} else if (is_sky) {
_action_enabled[ACTION_SAVE] = true;
_key_action[ACTION_SAVE].setAscii(63);