aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/hugo.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2010-09-02 12:50:10 +0000
committerArnaud Boutonné2010-09-02 12:50:10 +0000
commit21a09427de2cc8b251a13150d6d4ba8576fa1430 (patch)
treee2aa640c2a397e5183dc1ac5ad8bd2b3d1df0438 /engines/hugo/hugo.cpp
parente284852b64cc772c6475fc9d2db35122bea090f8 (diff)
downloadscummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.tar.gz
scummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.tar.bz2
scummvm-rg350-21a09427de2cc8b251a13150d6d4ba8576fa1430.zip
HUGO: Cleanup and fix mouse pointer issue
- Suppress commented code - Suppress readConfig() and writeConfig() - Fix the disappearing mouse issue svn-id: r52495
Diffstat (limited to 'engines/hugo/hugo.cpp')
-rw-r--r--engines/hugo/hugo.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index 1c0b52e49a..32dd841929 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -174,6 +174,9 @@ Common::Error HugoEngine::run() {
while (!doQuitFl) {
g_system->updateScreen();
+
+ // WORKAROUND: Force the mouse cursor to be displayed. This fixes the disappearing mouse cursor issue.
+ g_system->showMouse(true);
runMachine();
// Handle input
Common::Event event;