aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-06-15 00:21:57 +0200
committerBorja Lorente2016-08-14 18:24:58 +0200
commit56e8ac873b05f68fc9dfa1aa09f136974c71d353 (patch)
treed9f11438cd6b71bac7cc0fddfd9a208f88699232 /engines/macventure/world.cpp
parent9fc9e3398186f1405ac36497f53fe9a95839c257 (diff)
downloadscummvm-rg350-56e8ac873b05f68fc9dfa1aa09f136974c71d353.tar.gz
scummvm-rg350-56e8ac873b05f68fc9dfa1aa09f136974c71d353.tar.bz2
scummvm-rg350-56e8ac873b05f68fc9dfa1aa09f136974c71d353.zip
MACVENTURE: Add generic non-persistent container loading
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index 835d53ae10..dccf63ad2e 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -19,7 +19,7 @@ World::World(MacVentureEngine *engine, Common::MacResManager *resMan) {
_saveGame = new SaveGame(_engine, saveGameRes);
- _objectConstants = new Container<uint16>("Shadowgate II/Shadow Object.TXT");
+ _objectConstants = new Container<uint16>("Shadowgate II/Shadow Graphic");
delete saveGameRes;
saveGameFile.close();
@@ -47,7 +47,7 @@ bool World::loadStartGameFileName() {
res->read(fileName, length);
fileName[length] = '\0';
_startGameFileName = Common::String(fileName, length);
- _startGameFileName.replace(_startGameFileName.end(), _startGameFileName.end(), ".TXT");
+ _startGameFileName.replace(_startGameFileName.end(), _startGameFileName.end(), ".bin");
return true;
}