aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/hugo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/hugo.cpp')
-rw-r--r--engines/hugo/hugo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index 3f37bcb256..77b3dede50 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -254,6 +254,8 @@ Common::Error HugoEngine::run() {
_status.doQuitFl = false;
while (!_status.doQuitFl) {
+ _screen->drawHotspots();
+
g_system->updateScreen();
_sound->pcspkr_player();
runMachine();
@@ -287,7 +289,6 @@ Common::Error HugoEngine::run() {
}
_mouse->mouseHandler(); // Mouse activity - adds to display list
_screen->displayList(kDisplayDisplay); // Blit the display list to screen
-
_status.doQuitFl |= shouldQuit(); // update game quit flag
}
return Common::kNoError;