diff options
-rw-r--r-- | engines/saga/gfx.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/saga/gfx.cpp b/engines/saga/gfx.cpp index a9c6801714..8d36ee0e12 100644 --- a/engines/saga/gfx.cpp +++ b/engines/saga/gfx.cpp @@ -431,7 +431,10 @@ void Gfx::setCursor(CursorType cursorType) { switch (cursorType) { case kCursorBusy: - resourceId = RID_IHNM_HOURGLASS_CURSOR; + if (_vm->getGameId() != GID_IHNM_DEMO) + resourceId = RID_IHNM_HOURGLASS_CURSOR; + else + resourceId = (uint32)-1; break; default: resourceId = (uint32)-1; |