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 /engines/saga | |
parent | fc632a2b09e24a47e8947908c34b4d4bc6c599b3 (diff) | |
download | scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.gz scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.bz2 scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.zip |
JANITORIAL: Remove unnecessary semicolons
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |