[Scummvm-cvs-logs] SF.net SVN: scummvm:[53889] scummvm/trunk/engines/lastexpress

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Wed Oct 27 21:48:54 CEST 2010


Revision: 53889
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53889&view=rev
Author:   eriktorbjorn
Date:     2010-10-27 19:48:54 +0000 (Wed, 27 Oct 2010)

Log Message:
-----------
JANITORIAL: Remove unnecessary semicolons

Modified Paths:
--------------
    scummvm/trunk/engines/lastexpress/data/scene.cpp
    scummvm/trunk/engines/lastexpress/debug.cpp
    scummvm/trunk/engines/lastexpress/entities/mertens.cpp

Modified: scummvm/trunk/engines/lastexpress/data/scene.cpp
===================================================================
--- scummvm/trunk/engines/lastexpress/data/scene.cpp	2010-10-27 19:43:35 UTC (rev 53888)
+++ scummvm/trunk/engines/lastexpress/data/scene.cpp	2010-10-27 19:48:54 UTC (rev 53889)
@@ -123,7 +123,7 @@
 
 	stream->read(&scene->_name, sizeof(scene->_name));
 	scene->_sig = stream->readByte();
-	scene->entityPosition = (EntityPosition)stream->readUint16LE();;
+	scene->entityPosition = (EntityPosition)stream->readUint16LE();
 	scene->location = (Location)stream->readUint16LE();
 	scene->car = (CarIndex)stream->readUint16LE();
 	scene->position = stream->readByte();

Modified: scummvm/trunk/engines/lastexpress/debug.cpp
===================================================================
--- scummvm/trunk/engines/lastexpress/debug.cpp	2010-10-27 19:43:35 UTC (rev 53888)
+++ scummvm/trunk/engines/lastexpress/debug.cpp	2010-10-27 19:48:54 UTC (rev 53889)
@@ -663,7 +663,7 @@
 bool Debugger::cmdLoadScene(int argc, const char **argv) {
 	if (argc == 2 || argc == 3) {
 		int cd = 1;
-		SceneIndex index = (SceneIndex)getNumber(argv[1]);;
+		SceneIndex index = (SceneIndex)getNumber(argv[1]);
 
 		// Check args
 		if (argc == 3)

Modified: scummvm/trunk/engines/lastexpress/entities/mertens.cpp
===================================================================
--- scummvm/trunk/engines/lastexpress/entities/mertens.cpp	2010-10-27 19:43:35 UTC (rev 53888)
+++ scummvm/trunk/engines/lastexpress/entities/mertens.cpp	2010-10-27 19:48:54 UTC (rev 53889)
@@ -784,7 +784,7 @@
 			break;
 
 		case 6:
-			CALLBACK_ACTION();;
+			CALLBACK_ACTION();
 			break;
 		}
 		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