diff options
-rw-r--r-- | engines/saga/gfx.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/saga/gfx.cpp b/engines/saga/gfx.cpp index 8d36ee0e12..c19d71c13d 100644 --- a/engines/saga/gfx.cpp +++ b/engines/saga/gfx.cpp @@ -406,7 +406,8 @@ void Gfx::blackToPal(PalEntry *srcPal, double percent) { } void Gfx::showCursor(bool state) { - CursorMan.showMouse(state); + if (_vm->getGameId() != GID_IHNM_DEMO) // Don't show the mouse cursor in the IHNM demo + CursorMan.showMouse(state); } void Gfx::setCursor(CursorType cursorType) { |