diff options
Diffstat (limited to 'engines/titanic/titanic.cpp')
| -rw-r--r-- | engines/titanic/titanic.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp index 66d4e46546..6b23a2595d 100644 --- a/engines/titanic/titanic.cpp +++ b/engines/titanic/titanic.cpp @@ -82,6 +82,9 @@ void TitanicEngine::initialize() {  	DebugMan.addDebugChannel(kDebugGraphics, "graphics", "Graphics handling");  	DebugMan.addDebugChannel(kDebugSound, "sound", "Sound and Music handling"); +	_debugger = new Debugger(this); +	_filesManager = new CFilesManager(); +  	CSaveableObject::initClassList();  	CEnterExitFirstClassState::init();  	CGameObject::init(); @@ -97,9 +100,7 @@ void TitanicEngine::initialize() {  	TTnpcScript::init();  	OSVideoSurface::setup(); -	_debugger = new Debugger(this);  	_events = new Events(this); -	_filesManager = new CFilesManager();  	_screen = new Graphics::Screen(0, 0);  	_screenManager = new OSScreenManager(this);  	_window = new CMainGameWindow(this);  | 
