[Scummvm-cvs-logs] SF.net SVN: scummvm:[39153] scummvm/trunk

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Fri Mar 6 10:22:04 CET 2009


Revision: 39153
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39153&view=rev
Author:   Kirben
Date:     2009-03-06 09:22:03 +0000 (Fri, 06 Mar 2009)

Log Message:
-----------
Switch pause key to Pause in AGOS engine, and drop the debug keys.

Modified Paths:
--------------
    scummvm/trunk/README
    scummvm/trunk/engines/agos/input.cpp

Modified: scummvm/trunk/README
===================================================================
--- scummvm/trunk/README	2009-03-06 07:25:48 UTC (rev 39152)
+++ scummvm/trunk/README	2009-03-06 09:22:03 UTC (rev 39153)
@@ -1175,7 +1175,7 @@
     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 @@
     - 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 @@
     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

Modified: scummvm/trunk/engines/agos/input.cpp
===================================================================
--- scummvm/trunk/engines/agos/input.cpp	2009-03-06 07:25:48 UTC (rev 39152)
+++ scummvm/trunk/engines/agos/input.cpp	2009-03-06 09:22:03 UTC (rev 39153)
@@ -547,7 +547,7 @@
 			}
 		}
 		break;
-	case Common::KEYCODE_p:
+	case Common::KEYCODE_PAUSE:
 		pause();
 		break;
 	case Common::KEYCODE_t:
@@ -598,26 +598,6 @@
 			_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;
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list