diff options
-rw-r--r-- | backends/fs/psp/psp-stream.cpp | 2 | ||||
-rw-r--r-- | backends/platform/ds/arm9/source/fat/io_fcsr.c | 2 | ||||
-rw-r--r-- | backends/platform/iphone/iphone_video.m | 2 | ||||
-rw-r--r-- | engines/scumm/he/palette_he.cpp | 2 | ||||
-rw-r--r-- | sound/mods/maxtrax.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/backends/fs/psp/psp-stream.cpp b/backends/fs/psp/psp-stream.cpp index fac4067f46..c88e711cd0 100644 --- a/backends/fs/psp/psp-stream.cpp +++ b/backends/fs/psp/psp-stream.cpp @@ -218,7 +218,7 @@ int PSPIoStream::resume() { _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 diff --git a/backends/platform/ds/arm9/source/fat/io_fcsr.c b/backends/platform/ds/arm9/source/fat/io_fcsr.c index 7a67a6b1b0..d6fa4ff292 100644 --- a/backends/platform/ds/arm9/source/fat/io_fcsr.c +++ b/backends/platform/ds/arm9/source/fat/io_fcsr.c @@ -106,7 +106,7 @@ bool FCSR_ReadSectors (u32 sector, u8 numSecs, void* buffer) 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 diff --git a/backends/platform/iphone/iphone_video.m b/backends/platform/iphone/iphone_video.m index 61770a16c2..ef55a655c0 100644 --- a/backends/platform/iphone/iphone_video.m +++ b/backends/platform/iphone/iphone_video.m @@ -182,7 +182,7 @@ uint getSizeNextPOT(uint size) { _visibleWidth - _heightOffset, _visibleHeight - _widthOffset }; - float texWidth = _width / (float)_textureWidth;; + float texWidth = _width / (float)_textureWidth; float texHeight = _height / (float)_textureHeight; const GLfloat texCoords[] = { diff --git a/engines/scumm/he/palette_he.cpp b/engines/scumm/he/palette_he.cpp index ff29f9ecd0..6ef68d981e 100644 --- a/engines/scumm/he/palette_he.cpp +++ b/engines/scumm/he/palette_he.cpp @@ -110,7 +110,7 @@ int ScummEngine_v90he::getHEPaletteSimilarColor(int palSlot, int red, int green, 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 { diff --git a/sound/mods/maxtrax.cpp b/sound/mods/maxtrax.cpp index d0f1de1885..ab3015d39c 100644 --- a/sound/mods/maxtrax.cpp +++ b/sound/mods/maxtrax.cpp @@ -554,7 +554,7 @@ bool MaxTrax::playSong(int songIndex, bool loop) { _playerCtx.scoreIndex = songIndex; _playerCtx.ticks = 0; - _playerCtx.nextEvent = _scores[songIndex].events;; + _playerCtx.nextEvent = _scores[songIndex].events; _playerCtx.nextEventTime = _playerCtx.nextEvent->startTime; Paula::startPaula(); |