aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index c7b103efd7..36e9e21158 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -23,11 +23,15 @@ World::World(MacVentureEngine *engine, Common::MacResManager *resMan) {
_objectConstants = new Container(_engine->getFilePath(kObjectPathID).c_str());
calculateObjectRelations();
- _gameText = new Container("Shadowgate II/Shadow Text");
+ warning("Test functions about to happen");
+ _gameGraphics = new Container("Shadowgate II/Shadow Graphic");
+ _gameText = new Container("Shadowgate II/Shadow Text");
ObjID tid = (ObjID)1;
TextAsset test = TextAsset(tid, _gameText, _engine->isOldText(), _engine->getDecodingHuffman());
+ ImageAsset testImg(((428 * 2) + 1), _gameGraphics);
+
delete saveGameRes;
saveGameFile.close();
}
@@ -140,9 +144,9 @@ void World::updateObj(ObjID objID) {
win = _engine->getObjWindow(objID);
}
if (win) {
- //focusObjWin(objID);
+ _engine->focusObjWin(objID);
_engine->runObjQueue();
- //_engine->updateWindow(win);
+ _engine->updateWindow(win);
}
}