aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2018-02-26 19:20:34 -0500
committerPaul Gilbert2018-02-26 19:20:34 -0500
commitdab044edb08d3a571c3b9786c54540d576af203e (patch)
tree530abf3940f88bfb8a9569f5fe40464a4ddbf6e8 /engines
parent0fc11aef63d2abbc695d64ed41053b4163aac69c (diff)
downloadscummvm-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.cpp2
-rw-r--r--engines/xeen/worldofxeen/worldofxeen.h2
-rw-r--r--engines/xeen/xeen.cpp2
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();