diff options
author | Torbjörn Andersson | 2009-09-13 10:32:55 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-09-13 10:32:55 +0000 |
commit | e7469479ceebf341322fafbcbddd9028e8a42060 (patch) | |
tree | fdaea0e847a0b1953e0e6e06c0983de0becae14a /backends/platform | |
parent | e53de46b4fd1357cce5bb53c02de2c88f85169cc (diff) | |
download | scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.tar.gz scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.tar.bz2 scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.zip |
Removed unnecessary semi-colons.
svn-id: r44048
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/ds/arm9/source/fat/io_fcsr.c | 2 | ||||
-rw-r--r-- | backends/platform/iphone/iphone_video.m | 2 |
2 files changed, 2 insertions, 2 deletions
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[] = { |