aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2009-03-06 09:22:03 +0000
committerTravis Howell2009-03-06 09:22:03 +0000
commitd16b4ef949aabced00fbcb7ab4642f8d483f335f (patch)
treef1c26a07fb1bb8d7b6775a944e2941637c63be52
parent0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884 (diff)
downloadscummvm-rg350-d16b4ef949aabced00fbcb7ab4642f8d483f335f.tar.gz
scummvm-rg350-d16b4ef949aabced00fbcb7ab4642f8d483f335f.tar.bz2
scummvm-rg350-d16b4ef949aabced00fbcb7ab4642f8d483f335f.zip
Switch pause key to Pause in AGOS engine, and drop the debug keys.
svn-id: r39153
-rw-r--r--README6
-rw-r--r--engines/agos/input.cpp22
2 files changed, 4 insertions, 24 deletions
diff --git a/README b/README
index 335e9d8bdf..4066144951 100644
--- a/README
+++ b/README
@@ -1175,7 +1175,7 @@ other games.
s - Sound effects on/off
b - Background sounds on/off
[Simon the Sorcerer 2 only]
- p - Pauses
+ Pause - Pauses
t - Switch between speech and subtitles
v - Switch between subtitles only and
combined speech and subtitles
@@ -1188,7 +1188,7 @@ other games.
- and + - Music volume, down/up
m - Music on/off
s - Sound effects on/off
- p - Pauses
+ Pause - Pauses
The Feeble Files
Ctrl-d - Starts the debugger
@@ -1196,7 +1196,7 @@ other games.
F7 - Switch characters
F9 - Hitbox names on/off
s - Sound effects on/off
- p - Pauses
+ Pause - Pauses
t - Switch between speech and subtitles
v - Switch between subtitles only and
combined speech and subtitles
diff --git a/engines/agos/input.cpp b/engines/agos/input.cpp
index f564bd4df9..e7e4e61c3c 100644
--- a/engines/agos/input.cpp
+++ b/engines/agos/input.cpp
@@ -547,7 +547,7 @@ bool AGOSEngine::processSpecialKeys() {
}
}
break;
- case Common::KEYCODE_p:
+ case Common::KEYCODE_PAUSE:
pause();
break;
case Common::KEYCODE_t:
@@ -598,26 +598,6 @@ bool AGOSEngine::processSpecialKeys() {
_sound->ambientPause(_ambientPaused ^= 1);
}
break;
- case Common::KEYCODE_r:
- if (_debugMode)
- _dumpScripts ^= 1;
- break;
- case Common::KEYCODE_o:
- if (_debugMode)
- _dumpOpcodes ^= 1;
- break;
- case Common::KEYCODE_a:
- if (_debugMode)
- _dumpVgaScripts ^= 1;
- break;
- case Common::KEYCODE_g:
- if (_debugMode)
- _dumpVgaOpcodes ^= 1;
- break;
- case Common::KEYCODE_d:
- if (_debugMode)
- _dumpImages ^=1;
- break;
default:
break;
}