[Scummvm-cvs-logs] scummvm master -> b3d52de50f6c6ea9dc47ed5128b4c2ef9fa5fda4
eriktorbjorn
eriktorbjorn at telia.com
Sat Mar 2 20:20:47 CET 2013
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:
b3d52de50f JANITORIAL: Remove unnecessary semicolons
Commit: b3d52de50f6c6ea9dc47ed5128b4c2ef9fa5fda4
https://github.com/scummvm/scummvm/commit/b3d52de50f6c6ea9dc47ed5128b4c2ef9fa5fda4
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2013-03-02T11:19:45-08:00
Commit Message:
JANITORIAL: Remove unnecessary semicolons
Changed paths:
engines/hopkins/lines.cpp
engines/hopkins/objects.cpp
engines/pegasus/neighborhood/mars/mars.cpp
diff --git a/engines/hopkins/lines.cpp b/engines/hopkins/lines.cpp
index 93f569b..0422dc7 100644
--- a/engines/hopkins/lines.cpp
+++ b/engines/hopkins/lines.cpp
@@ -982,7 +982,7 @@ int LinesManager::GENIAL(int lineIdx, int dataIdx, int fromX, int fromY, int des
break;
v38 = foundLineIdx;
if (v37 <= 0 || v69 >= v37)
- break;;
+ break;
}
if (v74 != -1 && v38 != -1 && v76 != -1 && v75 != -1) {
route[routerIdx].invalidate();
diff --git a/engines/hopkins/objects.cpp b/engines/hopkins/objects.cpp
index a0d8810..25e8345 100644
--- a/engines/hopkins/objects.cpp
+++ b/engines/hopkins/objects.cpp
@@ -278,7 +278,7 @@ void ObjectsManager::addObject(int objIndex) {
for (;;) {
++arrIndex;
if ((!_vm->_globals._inventory[arrIndex]) || (arrIndex == 32))
- break;;
+ break;
}
_vm->_globals._inventory[arrIndex] = objIndex;
@@ -1875,7 +1875,7 @@ void ObjectsManager::handleLeftButton() {
++routeIdx;
} while (_vm->_linesManager._route[routeIdx]._x != -1);
- _vm->_linesManager.essai2[routeIdx].invalidate();;
+ _vm->_linesManager.essai2[routeIdx].invalidate();
}
if (_vm->_globals._actionMoveTo) {
diff --git a/engines/pegasus/neighborhood/mars/mars.cpp b/engines/pegasus/neighborhood/mars/mars.cpp
index 34c9e3d..959eaa0 100644
--- a/engines/pegasus/neighborhood/mars/mars.cpp
+++ b/engines/pegasus/neighborhood/mars/mars.cpp
@@ -2643,7 +2643,7 @@ void Mars::startUpFromSpaceChase() {
// Open the spot sounds movie again...
_spotSounds.initFromQuickTime(getSoundSpotsName());
- _spotSounds.setVolume(_vm->getSoundFXLevel());;
+ _spotSounds.setVolume(_vm->getSoundFXLevel());
initOnePicture(&_shuttleInterface1, "Images/Mars/MCmain1.pict", kShuttleBackgroundOrder, kShuttle1Left,
kShuttle1Top, true);
More information about the Scummvm-git-logs
mailing list