diff options
-rw-r--r-- | engines/xeen/worldofxeen/worldofxeen.cpp | 2 | ||||
-rw-r--r-- | engines/xeen/worldofxeen/worldofxeen.h | 2 | ||||
-rw-r--r-- | engines/xeen/xeen.cpp | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/engines/xeen/worldofxeen/worldofxeen.cpp b/engines/xeen/worldofxeen/worldofxeen.cpp index 9403b94bc2..4ea33eb6e2 100644 --- a/engines/xeen/worldofxeen/worldofxeen.cpp +++ b/engines/xeen/worldofxeen/worldofxeen.cpp @@ -31,8 +31,6 @@ namespace WorldOfXeen { WorldOfXeenEngine::WorldOfXeenEngine(OSystem *syst, const XeenGameDescription *gameDesc) : XeenEngine(syst, gameDesc), WorldOfXeenCutscenes(this) { - _seenDarkSideIntro = false; - _gameMode = GMODE_STARTUP; } void WorldOfXeenEngine::death() { diff --git a/engines/xeen/worldofxeen/worldofxeen.h b/engines/xeen/worldofxeen/worldofxeen.h index 08c2e25ace..773b454ef0 100644 --- a/engines/xeen/worldofxeen/worldofxeen.h +++ b/engines/xeen/worldofxeen/worldofxeen.h @@ -51,8 +51,6 @@ protected: */ virtual void death(); public: - bool _seenDarkSideIntro; -public: WorldOfXeenEngine(OSystem *syst, const XeenGameDescription *gameDesc); virtual ~WorldOfXeenEngine() {} diff --git a/engines/xeen/xeen.cpp b/engines/xeen/xeen.cpp index e9e27c455c..7149b9688f 100644 --- a/engines/xeen/xeen.cpp +++ b/engines/xeen/xeen.cpp @@ -106,7 +106,7 @@ bool XeenEngine::initialize() { _windows = new Windows(); // Set graphics mode - initGraphics(320, 200); + initGraphics(SCREEN_WIDTH, SCREEN_HEIGHT); // Setup mixer syncSoundSettings(); |