diff options
author | Strangerke | 2014-02-27 08:17:26 +0100 |
---|---|---|
committer | Strangerke | 2014-02-27 08:17:26 +0100 |
commit | 885013febb142744cbcbe29cd3a082b9151daf17 (patch) | |
tree | 866ea77c1729c6283747787b847858aedd2083b0 /engines/voyeur | |
parent | e44690dae93605aaf466d335ef6dc4c64f2b132a (diff) | |
download | scummvm-rg350-885013febb142744cbcbe29cd3a082b9151daf17.tar.gz scummvm-rg350-885013febb142744cbcbe29cd3a082b9151daf17.tar.bz2 scummvm-rg350-885013febb142744cbcbe29cd3a082b9151daf17.zip |
VOYEUR: Remove initializeManagers()
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/voyeur.cpp | 4 | ||||
-rw-r--r-- | engines/voyeur/voyeur.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/voyeur/voyeur.cpp b/engines/voyeur/voyeur.cpp index c26841f481..bc93acded6 100644 --- a/engines/voyeur/voyeur.cpp +++ b/engines/voyeur/voyeur.cpp @@ -67,10 +67,6 @@ VoyeurEngine::VoyeurEngine(OSystem *syst, const VoyeurGameDescription *gameDesc) DebugMan.addDebugChannel(kDebugScripts, "scripts", "Game scripts"); - initializeManagers(); -} - -void VoyeurEngine::initializeManagers() { _debugger = new Debugger(this); _eventsManager = new EventsManager(this); _filesManager = new FilesManager(this); diff --git a/engines/voyeur/voyeur.h b/engines/voyeur/voyeur.h index 4b90f8559d..19e047de05 100644 --- a/engines/voyeur/voyeur.h +++ b/engines/voyeur/voyeur.h @@ -80,7 +80,6 @@ private: FontInfoResource _defaultFontInfo; void ESP_Init(); - void initializeManagers(); void globalInitBolt(); void initBolt(); void vInitInterrupts(); |