aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-06-17 15:55:23 +0200
committerBorja Lorente2016-08-14 18:28:08 +0200
commit9c10b431ce3a59588571fbb77d8ae861f2de4c50 (patch)
tree313891b395c24a358d86fab831f02e8878f80668 /engines/macventure/world.cpp
parentaae8378afdc8372ba788363587d0b919b9d96d93 (diff)
downloadscummvm-rg350-9c10b431ce3a59588571fbb77d8ae861f2de4c50.tar.gz
scummvm-rg350-9c10b431ce3a59588571fbb77d8ae861f2de4c50.tar.bz2
scummvm-rg350-9c10b431ce3a59588571fbb77d8ae861f2de4c50.zip
MACVENTURE: Add text decoding (without composite)
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index d8fd9b4e39..d919a1a639 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -19,7 +19,12 @@ World::World(MacVentureEngine *engine, Common::MacResManager *resMan) {
_saveGame = new SaveGame(_engine, saveGameRes);
_objectConstants = new Container(_engine->getFilePath(kObjectPathID).c_str());
-
+ //_gameText = new Container(_engine->getFilePath(kTextPathID).c_str());
+ _gameText = new Container("Shadowgate II/Shadow Text");
+
+ ObjID tid = (ObjID)1;
+ TextAsset test = TextAsset(tid, _gameText, _engine->isOldText(), _engine->getDecodingHuffman());
+
delete saveGameRes;
saveGameFile.close();
}