aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.h
diff options
context:
space:
mode:
authorNicola Mettifogo2008-09-02 01:58:55 +0000
committerNicola Mettifogo2008-09-02 01:58:55 +0000
commit4ab5d3fdc4c6692c48a3c01d26fffa5bd8f5c335 (patch)
treec154a67d24649af51b89e50779a2a97f4d953576 /engines/parallaction/parallaction.h
parent3fef592c205a07a7519132ea2fe602340d18eeed (diff)
parent852bc9dbb750b9995d31e70f4158c97d3758c46f (diff)
downloadscummvm-rg350-4ab5d3fdc4c6692c48a3c01d26fffa5bd8f5c335.tar.gz
scummvm-rg350-4ab5d3fdc4c6692c48a3c01d26fffa5bd8f5c335.tar.bz2
scummvm-rg350-4ab5d3fdc4c6692c48a3c01d26fffa5bd8f5c335.zip
Merging more of the GSoC 2008 RTL branch: PARALLACTION
svn-id: r34268
Diffstat (limited to 'engines/parallaction/parallaction.h')
-rw-r--r--engines/parallaction/parallaction.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index b8464e7c7a..d7add635cd 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -71,7 +71,6 @@ enum {
enum EngineFlags {
- kEngineQuit = (1 << 0),
kEnginePauseJobs = (1 << 1),
kEngineWalking = (1 << 3),
kEngineChangeLocation = (1 << 4),
@@ -276,6 +275,11 @@ public:
ZonePtr _zoneTrap;
ZonePtr _commentZone;
+ bool _quit; /* The only reason this flag exists is for freeZones() to properly
+ * delete all zones when necessary. THIS FLAG IS NOT THE ENGINE QUIT FLAG,
+ * use _eventMan->shouldQuit() for that.
+ */
+
protected:
void runGame();
void runGuiFrame();