diff options
author | Torbjörn Andersson | 2008-01-13 22:12:35 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2008-01-13 22:12:35 +0000 |
commit | 7b1543357216d63885a62f785d65d42ab01766c4 (patch) | |
tree | 8101903e6c7513020415502482a3599b11cb3340 | |
parent | 16717ce5e19cec165a26b6fb912e19056d0f3db1 (diff) | |
download | scummvm-rg350-7b1543357216d63885a62f785d65d42ab01766c4.tar.gz scummvm-rg350-7b1543357216d63885a62f785d65d42ab01766c4.tar.bz2 scummvm-rg350-7b1543357216d63885a62f785d65d42ab01766c4.zip |
Removed unnecessary semi-colons.
svn-id: r30476
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 2 | ||||
-rw-r--r-- | engines/agos/vga_e2.cpp | 2 | ||||
-rw-r--r-- | engines/gob/coktelvideo.cpp | 2 | ||||
-rw-r--r-- | engines/parallaction/exec_br.cpp | 2 | ||||
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_music.cpp | 2 | ||||
-rw-r--r-- | engines/sword1/logic.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 252c11308b..2837501a4a 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -93,7 +93,7 @@ void OSystem_SDL_Symbian::setFeatureState(Feature f, bool enable) { break; case kFeatureDisableKeyFiltering: GUI::Actions::Instance()->beginMapping(enable); - break;; + break; default: OSystem_SDL::setFeatureState(f, enable); } diff --git a/engines/agos/vga_e2.cpp b/engines/agos/vga_e2.cpp index 8e046f34aa..07c6799d0e 100644 --- a/engines/agos/vga_e2.cpp +++ b/engines/agos/vga_e2.cpp @@ -257,7 +257,7 @@ void AGOSEngine::vc53_dissolveIn() { *dst &= color; *dst |= *src & 0xF; - dst = dstOffs2 + yoffs * _screenWidth;; + dst = dstOffs2 + yoffs * _screenWidth; src = srcOffs2 + yoffs * 224; *dst &= color; diff --git a/engines/gob/coktelvideo.cpp b/engines/gob/coktelvideo.cpp index 54b6a24ed5..6e8c8d9efd 100644 --- a/engines/gob/coktelvideo.cpp +++ b/engines/gob/coktelvideo.cpp @@ -367,7 +367,7 @@ void Imd::copyCurrentFrame(byte *dest, uint16 x, uint16 y, uint16 width, int16 t d++; } - dest += width;; + dest += width; vidMem += _width; } } diff --git a/engines/parallaction/exec_br.cpp b/engines/parallaction/exec_br.cpp index 37eec54f6a..0153df7095 100644 --- a/engines/parallaction/exec_br.cpp +++ b/engines/parallaction/exec_br.cpp @@ -365,7 +365,7 @@ DECLARE_INSTRUCTION_OPCODE(inc) { break; default: - error("This should never happen. Report immediately");; + error("This should never happen. Report immediately"); } if (inst->_opA._flags & kParaLocal) { diff --git a/engines/scumm/imuse_digi/dimuse_music.cpp b/engines/scumm/imuse_digi/dimuse_music.cpp index 82cd382720..2fc297607a 100644 --- a/engines/scumm/imuse_digi/dimuse_music.cpp +++ b/engines/scumm/imuse_digi/dimuse_music.cpp @@ -177,7 +177,7 @@ void IMuseDigital::playDigMusic(const char *songName, const imuseDigTable *table case 3: case 4: if (table->filename[0] == 0) { - fadeOutMusic(60);; + fadeOutMusic(60); return; } if (table->transitionType == 4) diff --git a/engines/sword1/logic.cpp b/engines/sword1/logic.cpp index fdb3fd3a85..e7e1fb39a4 100644 --- a/engines/sword1/logic.cpp +++ b/engines/sword1/logic.cpp @@ -1639,7 +1639,7 @@ int Logic::fnQuitGame(Object *cpt, int32 id, int32 a, int32 b, int32 c, int32 d, SwordEngine::_systemVars.engineQuit = true; } else error("fnQuitGame() called"); - return fnQuit(cpt, id, 0, 0, 0, 0, 0, 0);; + return fnQuit(cpt, id, 0, 0, 0, 0, 0, 0); } int Logic::fnDeathScreen(Object *cpt, int32 id, int32 a, int32 b, int32 c, int32 d, int32 z, int32 x) { |