diff options
-rw-r--r-- | engines/wintermute/wintermute.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/wintermute/wintermute.cpp b/engines/wintermute/wintermute.cpp index 21ee65b832..8bf83cc0f6 100644 --- a/engines/wintermute/wintermute.cpp +++ b/engines/wintermute/wintermute.cpp @@ -262,8 +262,7 @@ int WinterMuteEngine::init() { if (ConfMan.hasKey("save_slot")) { int slot = ConfMan.getInt("save_slot"); - Common::String str = Common::String::format("save00%d.DirtySplitSav", slot); - _game->loadGame(str.c_str()); + _game->loadGame(slot); } if (saveGame) { |