aboutsummaryrefslogtreecommitdiff
path: root/engines/director/director.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/director/director.cpp')
-rw-r--r--engines/director/director.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/engines/director/director.cpp b/engines/director/director.cpp
index 58a5459602..1c7fec17d6 100644
--- a/engines/director/director.cpp
+++ b/engines/director/director.cpp
@@ -114,19 +114,20 @@ Common::Error DirectorEngine::run() {
}
//FIXME
- _mainArchive = new RIFFArchive();
- _mainArchive->openFile("bookshelf_example.mmm");
- _currentScore = new Score(this);
- debug(0, "Score name %s", _currentScore->getMacName().c_str());
-
- _currentScore->loadArchive();
- _currentScore->startLoop();
+ //_mainArchive = new RIFFArchive();
+ //_mainArchive->openFile("bookshelf_example.mmm");
if (getPlatform() == Common::kPlatformWindows)
loadEXE();
else
loadMac();
+ _currentScore = new Score(this);
+ debug(0, "Score name %s", _currentScore->getMacName().c_str());
+
+ _currentScore->loadArchive();
+ _currentScore->startLoop();
+
return Common::kNoError;
}