aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/ghostroom.cpp
diff options
context:
space:
mode:
authoruruk2014-02-05 10:47:36 +0100
committeruruk2014-02-05 10:51:34 +0100
commit1af04e937b010b4fcd2e6e5fafd1b0839a21fb93 (patch)
treeda90f3087f8a21806170ca31a87e93307ff466e6 /engines/avalanche/ghostroom.cpp
parentacb70b645ad5ea23d914d533712d05ff22c66754 (diff)
downloadscummvm-rg350-1af04e937b010b4fcd2e6e5fafd1b0839a21fb93.tar.gz
scummvm-rg350-1af04e937b010b4fcd2e6e5fafd1b0839a21fb93.tar.bz2
scummvm-rg350-1af04e937b010b4fcd2e6e5fafd1b0839a21fb93.zip
AVALANCHE: Hide/reveal the mouse cursor in GhostRoom::run().
Diffstat (limited to 'engines/avalanche/ghostroom.cpp')
-rw-r--r--engines/avalanche/ghostroom.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/avalanche/ghostroom.cpp b/engines/avalanche/ghostroom.cpp
index be2175c27e..cbb36fb814 100644
--- a/engines/avalanche/ghostroom.cpp
+++ b/engines/avalanche/ghostroom.cpp
@@ -161,6 +161,7 @@ void GhostRoom::loadPictures() {
}
void GhostRoom::run() {
+ CursorMan.showMouse(false);
_vm->_graphics->saveScreen();
_vm->fadeOut();
_vm->fadeIn();
@@ -169,6 +170,8 @@ void GhostRoom::run() {
loadPictures();
warning("STUB: run()");
+
+ CursorMan.showMouse(true);
}
} // End of namespace Avalanche