aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/glk.h')
-rw-r--r--engines/glk/glk.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/engines/glk/glk.h b/engines/glk/glk.h
index 79e5425e81..8daa7ce5d7 100644
--- a/engines/glk/glk.h
+++ b/engines/glk/glk.h
@@ -80,6 +80,7 @@ protected:
int _loadSaveSlot;
Common::File _gameFile;
PCSpeaker *_pcSpeaker;
+ bool _quitFlag;
// Engine APIs
virtual Common::Error run();
@@ -241,6 +242,21 @@ public:
* Set a random number seed
*/
void setRandomNumberSeed(uint seed) { _random.setSeed(seed); }
+
+ /**
+ * Flags to quit the game
+ */
+ void quitGame() {
+ _quitFlag = true;
+ Engine::quitGame();
+ }
+
+ /**
+ * Returns true if the game should be quit
+ */
+ bool shouldQuit() const {
+ return _quitFlag || Engine::shouldQuit();
+ }
};
extern GlkEngine *g_vm;