diff options
Diffstat (limited to 'backends')
-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 |
3 files changed, 3 insertions, 3 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[] = { |