aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/titanic.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-22 21:15:20 -0500
committerPaul Gilbert2016-02-22 21:15:20 -0500
commit063f8a97c842fa6745746180daffb513bda79658 (patch)
tree3b157a3326e478089ac60af457828376c99b0f8a /engines/titanic/titanic.cpp
parent572fc8fc9ee65ec29c346f00cb34da482dda8d90 (diff)
downloadscummvm-rg350-063f8a97c842fa6745746180daffb513bda79658.tar.gz
scummvm-rg350-063f8a97c842fa6745746180daffb513bda79658.tar.bz2
scummvm-rg350-063f8a97c842fa6745746180daffb513bda79658.zip
TITANIC: Fixes for game startup
Diffstat (limited to 'engines/titanic/titanic.cpp')
-rw-r--r--engines/titanic/titanic.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp
index 57f3c7df0c..d998ec5837 100644
--- a/engines/titanic/titanic.cpp
+++ b/engines/titanic/titanic.cpp
@@ -52,8 +52,9 @@ void TitanicEngine::initialize() {
DebugMan.addDebugChannel(kDebugSound, "sound", "Sound and Music handling");
CSaveableObject::initClassList();
- _window = new CMainGameWindow(this);
_screenManager = new OSScreenManager(this);
+ _window = new CMainGameWindow(this);
+ _window->applicationStarting();
}
Common::Error TitanicEngine::run() {