aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock')
-rw-r--r--engines/sherlock/events.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/sherlock/events.cpp b/engines/sherlock/events.cpp
index 697c1420a6..c6a223b6d9 100644
--- a/engines/sherlock/events.cpp
+++ b/engines/sherlock/events.cpp
@@ -28,6 +28,7 @@
#include "sherlock/sherlock.h"
#include "sherlock/events.h"
#include "sherlock/surface.h"
+#include "sherlock/tattoo/tattoo.h"
namespace Sherlock {
@@ -173,7 +174,8 @@ void Events::animateCursorIfNeeded() {
}
void Events::showCursor() {
- CursorMan.showMouse(true);
+ if (IS_SERRATED_SCALPEL || !static_cast<Tattoo::TattooEngine *>(_vm)->_runningProlog)
+ CursorMan.showMouse(true);
}
void Events::hideCursor() {