diff options
author | Travis Howell | 2006-05-04 04:40:26 +0000 |
---|---|---|
committer | Travis Howell | 2006-05-04 04:40:26 +0000 |
commit | 838430bedac3cf984cd18373707998b43340131f (patch) | |
tree | 8eba91d84d347915f4b279bf9b69ebee940c67b2 | |
parent | 6a419462198fb02bbcca29e7e896c3da2ae39f94 (diff) | |
download | scummvm-rg350-838430bedac3cf984cd18373707998b43340131f.tar.gz scummvm-rg350-838430bedac3cf984cd18373707998b43340131f.tar.bz2 scummvm-rg350-838430bedac3cf984cd18373707998b43340131f.zip |
Add filename difference in Amiga/Mac. versions of FF
svn-id: r22326
-rw-r--r-- | engines/simon/saveload.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/engines/simon/saveload.cpp b/engines/simon/saveload.cpp index a21c44c84e..7425e94e85 100644 --- a/engines/simon/saveload.cpp +++ b/engines/simon/saveload.cpp @@ -587,10 +587,15 @@ char *SimonEngine::genSaveName(int slot) { static char buf[15]; if (getGameType() == GType_FF) { - if (slot == 999) - sprintf(buf, "save.%.3d", slot); - else + // Restart + if (slot == 999) { + if (getPlatform() == Common::kPlatformWindows) + sprintf(buf, "save.%.3d", slot); + else + sprintf(buf, "setup"); + } else { sprintf(buf, "feeble.%.3d", slot); + } } else if (getGameType() == GType_SIMON2) { sprintf(buf, "simon2.%.3d", slot); } else { |