diff options
author | Chris Apers | 2003-08-16 09:12:26 +0000 |
---|---|---|
committer | Chris Apers | 2003-08-16 09:12:26 +0000 |
commit | 18bd921440dcaaff82f3c4f5d6ecbd39f4bbab7e (patch) | |
tree | 63871b0f1578daced0891e1dc42c5249897b1672 | |
parent | 5ad330e1456d207e1bb8428cebf56d0c4f72dd94 (diff) | |
download | scummvm-rg350-18bd921440dcaaff82f3c4f5d6ecbd39f4bbab7e.tar.gz scummvm-rg350-18bd921440dcaaff82f3c4f5d6ecbd39f4bbab7e.tar.bz2 scummvm-rg350-18bd921440dcaaff82f3c4f5d6ecbd39f4bbab7e.zip |
Fixed
svn-id: r9718
-rw-r--r-- | scumm/saveload.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp index 85194f4b81..0c392e6ade 100644 --- a/scumm/saveload.cpp +++ b/scumm/saveload.cpp @@ -221,12 +221,7 @@ bool Scumm::loadState(int slot, bool compat, SaveFileManager *mgr) { } void Scumm::makeSavegameName(char *out, int slot, bool compatible) { - -#ifndef __PALM_OS__ sprintf(out, "%s.%c%.2d", _game_name, compatible ? 'c' : 's', slot); -#else - sprintf(out, "%s.%s%.2d", _game_name, compatible ? "c" : "s", slot); -#endif } void Scumm::listSavegames(bool *marks, int num, SaveFileManager *mgr) { |