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

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Sat Aug 15 16:13:49 CEST 2009


Revision: 43409
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43409&view=rev
Author:   eriktorbjorn
Date:     2009-08-15 14:13:48 +0000 (Sat, 15 Aug 2009)

Log Message:
-----------
Removed unnecessary semi-colons.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/vga.cpp
    scummvm/trunk/engines/gob/video_v6.cpp
    scummvm/trunk/engines/parallaction/font.cpp
    scummvm/trunk/engines/tinsel/actors.cpp
    scummvm/trunk/engines/tinsel/tinlib.cpp
    scummvm/trunk/engines/tucker/tucker.cpp

Modified: scummvm/trunk/engines/agos/vga.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/agos/vga.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -1197,7 +1197,7 @@
 		uint16 height = _videoWindows[4 * 4 + 3];
 
 		byte *dst = (byte *)_backGroundBuf->getBasePtr(xoffs, yoffs);
-		byte *src = (byte *)_window4BackScn->pixels;;
+		byte *src = (byte *)_window4BackScn->pixels;
 		uint16 srcWidth = _videoWindows[4 * 4 + 2] * 16;
 		for (; height > 0; height--) {
 			memcpy(dst, src, width);

Modified: scummvm/trunk/engines/gob/video_v6.cpp
===================================================================
--- scummvm/trunk/engines/gob/video_v6.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/gob/video_v6.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -39,7 +39,7 @@
 }
 
 void Video_v6::setPrePalette() {
-	byte *tpal = (byte *) _vm->_draw->_vgaPalette;;
+	byte *tpal = (byte *) _vm->_draw->_vgaPalette;
 	const byte *fpal = (const byte *) _ditherPalette;
 
 	for (int i = 0; i < 256; i++) {

Modified: scummvm/trunk/engines/parallaction/font.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/font.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/parallaction/font.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -256,7 +256,7 @@
 
 	byte*	getData(uint16 index) {
 		assert(index < _numGlyphs);
-		return _data + (_height * _widths[index]) * index;;
+		return _data + (_height * _widths[index]) * index;
 	}
 
 	void	getRect(uint16 index, Common::Rect &r) {

Modified: scummvm/trunk/engines/tinsel/actors.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/actors.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/tinsel/actors.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -1185,7 +1185,7 @@
 void SetActorTalking(int ano, bool tf) {
 	assert(ano > 0 && ano <= NumActors); // illegal actor number
 
-	actorInfo[ano - 1].bTalking = tf;;
+	actorInfo[ano - 1].bTalking = tf;
 }
 
 bool ActorIsTalking(int ano) {

Modified: scummvm/trunk/engines/tinsel/tinlib.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/tinlib.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/tinsel/tinlib.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -359,7 +359,7 @@
  */
 static void ScrollMonitorProcess(CORO_PARAM, const void *param) {
 	int		Loffset, Toffset;
-	const SCROLL_MONITOR *psm = (const SCROLL_MONITOR *)param;;
+	const SCROLL_MONITOR *psm = (const SCROLL_MONITOR *)param;
 
 	// COROUTINE
 	CORO_BEGIN_CONTEXT;

Modified: scummvm/trunk/engines/tucker/tucker.cpp
===================================================================
--- scummvm/trunk/engines/tucker/tucker.cpp	2009-08-15 12:17:23 UTC (rev 43408)
+++ scummvm/trunk/engines/tucker/tucker.cpp	2009-08-15 14:13:48 UTC (rev 43409)
@@ -687,7 +687,7 @@
 	_fadePaletteCounter = 0;
 	_mainLoopCounter2 = 0;
 	_mainLoopCounter1 = 0;
-	_characterFacingDirection = 0;;
+	_characterFacingDirection = 0;
 	_skipPanelObjectUnderCursor = 0;
 	_locationMaskIgnore = 0;
 	_backgroundSprOffset = 0;


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