[Scummvm-cvs-logs] scummvm master -> 6b0592756a153a1cf02405888cafa9a954efd6cb

Strangerke Strangerke at scummvm.org
Wed Oct 8 00:01:24 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6b0592756a TSAGE: R2R - rename the outpost alpha debugger command


Commit: 6b0592756a153a1cf02405888cafa9a954efd6cb
    https://github.com/scummvm/scummvm/commit/6b0592756a153a1cf02405888cafa9a954efd6cb
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-10-07T23:58:11+02:00

Commit Message:
TSAGE: R2R - rename the outpost alpha debugger command

Changed paths:
    engines/tsage/debugger.cpp
    engines/tsage/debugger.h



diff --git a/engines/tsage/debugger.cpp b/engines/tsage/debugger.cpp
index b647807..a387967 100644
--- a/engines/tsage/debugger.cpp
+++ b/engines/tsage/debugger.cpp
@@ -42,7 +42,7 @@ Debugger::Debugger() : GUI::Debugger() {
 	registerCmd("moveobject",       WRAP_METHOD(Debugger, Cmd_MoveObject));
 	registerCmd("hotspots",         WRAP_METHOD(Debugger, Cmd_Hotspots));
 	registerCmd("sound",            WRAP_METHOD(Debugger, Cmd_Sound));
-	registerCmd("setdebug",         WRAP_METHOD(Debugger, Cmd_SetDebug));
+	registerCmd("setdebug",         WRAP_METHOD(Debugger, Cmd_SetOutpostAlphaDebug));
 }
 
 static int strToInt(const char *s) {
@@ -344,7 +344,7 @@ bool Debugger::Cmd_Sound(int argc, const char **argv) {
 /**
  * Activate internal debugger, when available
  */
-bool Debugger::Cmd_SetDebug(int argc, const char **argv) {
+bool Debugger::Cmd_SetOutpostAlphaDebug(int argc, const char **argv) {
 	debugPrintf("Not available in this game\n");
 	return true;
 }
@@ -720,7 +720,7 @@ bool Ringworld2Debugger::Cmd_MoveObject(int argc, const char **argv) {
 /**
  * Activate internal debugger, when available
  */
-bool Ringworld2Debugger::Cmd_SetDebug(int argc, const char **argv) {
+bool Ringworld2Debugger::Cmd_SetOutpostAlphaDebug(int argc, const char **argv) {
 	if (argc != 1) {
 		debugPrintf("Usage: %s\n", argv[0]);
 		return true;
diff --git a/engines/tsage/debugger.h b/engines/tsage/debugger.h
index 610f45d..b0f4c66 100644
--- a/engines/tsage/debugger.h
+++ b/engines/tsage/debugger.h
@@ -45,7 +45,7 @@ protected:
 	bool Cmd_Sound(int argc, const char **argv);
 	virtual bool Cmd_ListObjects(int argc, const char **argv) = 0;
 	virtual bool Cmd_MoveObject(int argc, const char **argv) = 0;
-	virtual bool Cmd_SetDebug(int argc, const char **argv);
+	virtual bool Cmd_SetOutpostAlphaDebug(int argc, const char **argv);
 };
 
 class DemoDebugger : public Debugger {
@@ -70,7 +70,7 @@ class Ringworld2Debugger : public Debugger {
 protected:
 	virtual bool Cmd_ListObjects(int argc, const char **argv);
 	virtual bool Cmd_MoveObject(int argc, const char **argv);
-	virtual bool Cmd_SetDebug(int argc, const char **argv);
+	virtual bool Cmd_SetOutpostAlphaDebug(int argc, const char **argv);
 };
 
 } // End of namespace TsAGE






More information about the Scummvm-git-logs mailing list