diff options
author | Max Horn | 2009-01-30 16:04:39 +0000 |
---|---|---|
committer | Max Horn | 2009-01-30 16:04:39 +0000 |
commit | 716f88f57127e32916ce22f756b1a3f2d2eff9d6 (patch) | |
tree | e8d0463c041f44e52ef8a4bf1487fda8d4076577 /engines/engine.h | |
parent | f465abb75d81a248e3c553aa5706031b52c7189d (diff) | |
download | scummvm-rg350-716f88f57127e32916ce22f756b1a3f2d2eff9d6.tar.gz scummvm-rg350-716f88f57127e32916ce22f756b1a3f2d2eff9d6.tar.bz2 scummvm-rg350-716f88f57127e32916ce22f756b1a3f2d2eff9d6.zip |
Avoid using g_engine if possible
svn-id: r36149
Diffstat (limited to 'engines/engine.h')
-rw-r--r-- | engines/engine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/engine.h b/engines/engine.h index ac001de756..a67f5f6637 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -219,13 +219,13 @@ public: * Request the engine to quit. Sends a EVENT_QUIT event to the Event * Manager. */ - void quitGame(); + static void quitGame(); /** * Return whether the ENGINE should quit respectively should return to the * launcher. */ - bool shouldQuit() const; + static bool shouldQuit(); /** * Pause or resume the engine. This should stop/resume any audio playback |