[Scummvm-cvs-logs] SF.net SVN: scummvm:[44048] scummvm/trunk
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Sun Sep 13 12:32:55 CEST 2009
Revision: 44048
http://scummvm.svn.sourceforge.net/scummvm/?rev=44048&view=rev
Author: eriktorbjorn
Date: 2009-09-13 10:32:55 +0000 (Sun, 13 Sep 2009)
Log Message:
-----------
Removed unnecessary semi-colons.
Modified Paths:
--------------
scummvm/trunk/backends/fs/psp/psp-stream.cpp
scummvm/trunk/backends/platform/ds/arm9/source/fat/io_fcsr.c
scummvm/trunk/backends/platform/iphone/iphone_video.m
scummvm/trunk/engines/scumm/he/palette_he.cpp
scummvm/trunk/sound/mods/maxtrax.cpp
Modified: scummvm/trunk/backends/fs/psp/psp-stream.cpp
===================================================================
--- scummvm/trunk/backends/fs/psp/psp-stream.cpp 2009-09-13 09:54:53 UTC (rev 44047)
+++ scummvm/trunk/backends/fs/psp/psp-stream.cpp 2009-09-13 10:32:55 UTC (rev 44048)
@@ -218,7 +218,7 @@
_handle = fopen(_path.c_str(), _writeMode ? "wb" : "rb");
if (_handle <= 0) {
PSPDebugTrace("PSPIoStream::resume(): Couldn't reopen file %s\n", _path.c_str());
- ret = -1;;
+ ret = -1;
}
// Resume our previous position
Modified: scummvm/trunk/backends/platform/ds/arm9/source/fat/io_fcsr.c
===================================================================
--- scummvm/trunk/backends/platform/ds/arm9/source/fat/io_fcsr.c 2009-09-13 09:54:53 UTC (rev 44047)
+++ scummvm/trunk/backends/platform/ds/arm9/source/fat/io_fcsr.c 2009-09-13 10:32:55 UTC (rev 44048)
@@ -106,7 +106,7 @@
bool flagSramSector = false;
int numSectors = (numSecs > 0 ? numSecs : 256);
int readLength = numSectors * BYTE_PER_READ;
- u8* src;;
+ u8* src;
u8* dst;
// Find which region this read is in
Modified: scummvm/trunk/backends/platform/iphone/iphone_video.m
===================================================================
--- scummvm/trunk/backends/platform/iphone/iphone_video.m 2009-09-13 09:54:53 UTC (rev 44047)
+++ scummvm/trunk/backends/platform/iphone/iphone_video.m 2009-09-13 10:32:55 UTC (rev 44048)
@@ -182,7 +182,7 @@
_visibleWidth - _heightOffset, _visibleHeight - _widthOffset
};
- float texWidth = _width / (float)_textureWidth;;
+ float texWidth = _width / (float)_textureWidth;
float texHeight = _height / (float)_textureHeight;
const GLfloat texCoords[] = {
Modified: scummvm/trunk/engines/scumm/he/palette_he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/palette_he.cpp 2009-09-13 09:54:53 UTC (rev 44047)
+++ scummvm/trunk/engines/scumm/he/palette_he.cpp 2009-09-13 10:32:55 UTC (rev 44048)
@@ -110,7 +110,7 @@
int ScummEngine_v90he::getHEPalette16BitColorComponent(int component, int type) {
uint16 col;
if (type == 2) {
- col = (((component & 0xFFFF) >> 0) & 0x1F) << 3;;
+ col = (((component & 0xFFFF) >> 0) & 0x1F) << 3;
} else if (type == 1) {
col = (((component & 0xFFFF) >> 5) & 0x1F) << 3;
} else {
Modified: scummvm/trunk/sound/mods/maxtrax.cpp
===================================================================
--- scummvm/trunk/sound/mods/maxtrax.cpp 2009-09-13 09:54:53 UTC (rev 44047)
+++ scummvm/trunk/sound/mods/maxtrax.cpp 2009-09-13 10:32:55 UTC (rev 44048)
@@ -554,7 +554,7 @@
_playerCtx.scoreIndex = songIndex;
_playerCtx.ticks = 0;
- _playerCtx.nextEvent = _scores[songIndex].events;;
+ _playerCtx.nextEvent = _scores[songIndex].events;
_playerCtx.nextEventTime = _playerCtx.nextEvent->startTime;
Paula::startPaula();
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