[Scummvm-cvs-logs] CVS: scummvm/scumm debugger.cpp,1.120,1.120.2.1 actor.cpp,1.229.2.2,1.229.2.3

Max Horn fingolfin at users.sourceforge.net
Tue Mar 16 16:01:10 CET 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15595/scumm

Modified Files:
      Tag: branch-0-6-0
	debugger.cpp actor.cpp 
Log Message:
Patch #917503: Remove stray semicolons

Index: debugger.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/debugger.cpp,v
retrieving revision 1.120
retrieving revision 1.120.2.1
diff -u -d -r1.120 -r1.120.2.1
--- debugger.cpp	13 Feb 2004 10:26:40 -0000	1.120
+++ debugger.cpp	16 Mar 2004 23:51:34 -0000	1.120.2.1
@@ -57,7 +57,7 @@
 	va_end(va);
 
 	debug(buf);
-};
+}
 	
 ScummDebugger::ScummDebugger(ScummEngine *s)
 	: Common::Debugger<ScummDebugger>() {
@@ -592,7 +592,7 @@
 
 	DebugPrintf("Unknown flag. Type 'Debug ?' for syntax\n");
 	return true;
-};
+}
 
 bool ScummDebugger::Cmd_DebugLevel(int argc, const char **argv) {
 	if (argc == 1) {

Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.229.2.2
retrieving revision 1.229.2.3
diff -u -d -r1.229.2.2 -r1.229.2.3
--- actor.cpp	25 Feb 2004 04:37:28 -0000	1.229.2.2
+++ actor.cpp	16 Mar 2004 23:51:34 -0000	1.229.2.3
@@ -789,14 +789,14 @@
 		return _V1_talkingActor;
 	else
 		return VAR(VAR_TALK_ACTOR);
-};
+}
 
 void ScummEngine::talkingActor(int value) {
 	if (_gameId == GID_MANIAC && _version == 1)
 		_V1_talkingActor = value;
 	else
 		VAR(VAR_TALK_ACTOR) = value;
-};
+}
 
 void ScummEngine::showActors() {
 	int i;





More information about the Scummvm-git-logs mailing list