diff options
author | Paul Gilbert | 2018-02-26 19:20:34 -0500 |
---|---|---|
committer | Paul Gilbert | 2018-02-26 19:20:34 -0500 |
commit | dab044edb08d3a571c3b9786c54540d576af203e (patch) | |
tree | 530abf3940f88bfb8a9569f5fe40464a4ddbf6e8 /engines | |
parent | 0fc11aef63d2abbc695d64ed41053b4163aac69c (diff) | |
download | scummvm-rg350-dab044edb08d3a571c3b9786c54540d576af203e.tar.gz scummvm-rg350-dab044edb08d3a571c3b9786c54540d576af203e.tar.bz2 scummvm-rg350-dab044edb08d3a571c3b9786c54540d576af203e.zip |
XEEN: Minor cleanups to outer engine
Diffstat (limited to 'engines')
-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(); |