aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-07-27 21:08:33 +0200
committerBorja Lorente2016-08-14 19:00:35 +0200
commitf58435a2bcf41153b5a0c0e61548dd350e24cad9 (patch)
treecbf32824cde250e0ef3c7da769cb062790234cb2 /engines/macventure/world.cpp
parent518d336e5a5e266c2b443a9cacfa88abd541fe28 (diff)
downloadscummvm-rg350-f58435a2bcf41153b5a0c0e61548dd350e24cad9.tar.gz
scummvm-rg350-f58435a2bcf41153b5a0c0e61548dd350e24cad9.tar.bz2
scummvm-rg350-f58435a2bcf41153b5a0c0e61548dd350e24cad9.zip
MACVENTURE: Add dejavu
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 e6efeb5598..f5af029f8f 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -20,10 +20,10 @@ World::World(MacVentureEngine *engine, Common::MacResManager *resMan) {
Common::SeekableReadStream *saveGameRes = saveGameFile.readStream(saveGameFile.size());
_saveGame = new SaveGame(_engine, saveGameRes);
- _objectConstants = new Container(_engine->getFilePath(kObjectPathID).c_str());
+ _objectConstants = new Container(_engine->getFilePath(kObjectPathID));
calculateObjectRelations();
- _gameText = new Container(_engine->getFilePath(kTextPathID).c_str());
+ _gameText = new Container(_engine->getFilePath(kTextPathID));
delete saveGameRes;
saveGameFile.close();