From ec40b4ec441dd1e3af4cdf1fb670d44efc19f7f4 Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Sun, 12 Jun 2016 22:09:06 +0200 Subject: MACVENTURE: Fix border offsets --- engines/macventure/macventure.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'engines/macventure/macventure.cpp') 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; -- cgit v1.2.3