diff options
author | Torbjörn Andersson | 2011-10-29 11:23:44 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2011-10-29 11:23:44 +0200 |
commit | a01003849208dbfa9364813863b7a2f66a5df023 (patch) | |
tree | 48ddbb9ff78f3b2b4cb2e0e72b789bf964dbb41e | |
parent | fc632a2b09e24a47e8947908c34b4d4bc6c599b3 (diff) | |
download | scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.gz scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.bz2 scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.zip |
JANITORIAL: Remove unnecessary semicolons
-rw-r--r-- | common/macresman.cpp | 4 | ||||
-rw-r--r-- | engines/gob/iniconfig.cpp | 2 | ||||
-rw-r--r-- | engines/saga/detection.cpp | 2 | ||||
-rw-r--r-- | engines/tsage/ringworld/ringworld_scenes5.cpp | 2 | ||||
-rw-r--r-- | engines/tsage/ringworld/ringworld_scenes6.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/common/macresman.cpp b/common/macresman.cpp index 2b9c68ade9..1317600cb7 100644 --- a/common/macresman.cpp +++ b/common/macresman.cpp @@ -110,7 +110,7 @@ bool MacResManager::open(String filename) { String fullPath = ConfMan.get("path") + "/" + filename + "/..namedfork/rsrc"; FSNode resFsNode = FSNode(fullPath); if (resFsNode.exists()) { - SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();; + SeekableReadStream *macResForkRawStream = resFsNode.createReadStream(); if (macResForkRawStream && loadFromRawFork(*macResForkRawStream)) { _baseFileName = filename; @@ -173,7 +173,7 @@ bool MacResManager::open(FSNode path, String filename) { String fullPath = path.getPath() + "/" + filename + "/..namedfork/rsrc"; FSNode resFsNode = FSNode(fullPath); if (resFsNode.exists()) { - SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();; + SeekableReadStream *macResForkRawStream = resFsNode.createReadStream(); if (macResForkRawStream && loadFromRawFork(*macResForkRawStream)) { _baseFileName = filename; diff --git a/engines/gob/iniconfig.cpp b/engines/gob/iniconfig.cpp index 9b8f1c703e..bba531723c 100644 --- a/engines/gob/iniconfig.cpp +++ b/engines/gob/iniconfig.cpp @@ -90,7 +90,7 @@ bool INIConfig::openConfig(const Common::String &file, Config &config) { bool INIConfig::createConfig(const Common::String &file, Config &config) { config.config = new Common::ConfigFile(); - config.created = true;; + config.created = true; _configs.setVal(file, config); diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index 091ec8d427..d39ec34cc8 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -209,7 +209,7 @@ int SagaMetaEngine::getMaximumSaveSlot() const { return MAX_SAVES - 1; } void SagaMetaEngine::removeSaveState(const char *target, int slot) const { Common::String filename = target; - filename += Common::String::format(".s%02d", slot);; + filename += Common::String::format(".s%02d", slot); g_system->getSavefileManager()->removeSavefile(filename); } diff --git a/engines/tsage/ringworld/ringworld_scenes5.cpp b/engines/tsage/ringworld/ringworld_scenes5.cpp index 3cf1207e9e..2090bc5da7 100644 --- a/engines/tsage/ringworld/ringworld_scenes5.cpp +++ b/engines/tsage/ringworld/ringworld_scenes5.cpp @@ -2173,7 +2173,7 @@ void Scene4050::Action4::signal() { case 5: scene->_hotspot16.setStrip2(4); scene->_hotspot16.setFrame(1); - scene->_hotspot16.animate(ANIM_MODE_4, 4, 1, this);; + scene->_hotspot16.animate(ANIM_MODE_4, 4, 1, this); break; case 6: scene->_hotspot16.animate(ANIM_MODE_5, NULL); diff --git a/engines/tsage/ringworld/ringworld_scenes6.cpp b/engines/tsage/ringworld/ringworld_scenes6.cpp index 57a073caee..30a91b57aa 100644 --- a/engines/tsage/ringworld/ringworld_scenes6.cpp +++ b/engines/tsage/ringworld/ringworld_scenes6.cpp @@ -1124,7 +1124,7 @@ void Scene5100::postInit(SceneObjectList *OwnerList) { _hotspot4.setVisage(5363); _hotspot4.setPosition(Common::Point(1025, 65)); _hotspot4.setStrip(4); - _hotspot4.animate(ANIM_MODE_7, 0, NULL);; + _hotspot4.animate(ANIM_MODE_7, 0, NULL); g_globals->_sceneItems.push_back(&_hotspot4); _hotspot9.postInit(); |