diff options
| author | Travis Howell | 2009-03-06 09:22:03 +0000 | 
|---|---|---|
| committer | Travis Howell | 2009-03-06 09:22:03 +0000 | 
| commit | d16b4ef949aabced00fbcb7ab4642f8d483f335f (patch) | |
| tree | f1c26a07fb1bb8d7b6775a944e2941637c63be52 | |
| parent | 0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884 (diff) | |
| download | scummvm-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-- | README | 6 | ||||
| -rw-r--r-- | engines/agos/input.cpp | 22 | 
2 files changed, 4 insertions, 24 deletions
| @@ -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;  	} | 
