aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/macventure.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-06-12 22:09:06 +0200
committerBorja Lorente2016-08-14 18:20:54 +0200
commitec40b4ec441dd1e3af4cdf1fb670d44efc19f7f4 (patch)
treea40e2023b69e0808ca71c352bc073928a9007612 /engines/macventure/macventure.cpp
parent1d5cbee3a820c34af2ecdc2221e38290ab33c82f (diff)
downloadscummvm-rg350-ec40b4ec441dd1e3af4cdf1fb670d44efc19f7f4.tar.gz
scummvm-rg350-ec40b4ec441dd1e3af4cdf1fb670d44efc19f7f4.tar.bz2
scummvm-rg350-ec40b4ec441dd1e3af4cdf1fb670d44efc19f7f4.zip
MACVENTURE: Fix border offsets
Diffstat (limited to 'engines/macventure/macventure.cpp')
-rw-r--r--engines/macventure/macventure.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/macventure/macventure.cpp b/engines/macventure/macventure.cpp
index 5660fde16c..19021278cb 100644
--- a/engines/macventure/macventure.cpp
+++ b/engines/macventure/macventure.cpp
@@ -87,6 +87,24 @@ Common::Error MacVentureEngine::run() {
return Common::kNoError;
}
+void MacVentureEngine::requestQuit() {
+ _shouldQuit = true;
+}
+
+void MacVentureEngine::requestUnpause() {
+ _paused = false;
+}
+
+// Data retrieval
+
+bool MacVentureEngine::isPaused() {
+ return _paused;
+}
+
+Common::String MacVentureEngine::getCommandsPausedString() {
+ return Common::String("Click to continue");
+}
+
void MacVentureEngine::processEvents() {
Common::Event event;