diff options
-rw-r--r-- | engines/mohawk/livingbooks.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index a0671d18d5..2b0a45d4e6 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -40,6 +40,8 @@ #include "gui/message.h" +#include "graphics/cursorman.h" + namespace Mohawk { // read a null-terminated string from a stream @@ -223,7 +225,7 @@ Common::Error MohawkEngine_LivingBooks::run() { } } - if (found) + if (found && CursorMan.isVisible()) found->handleMouseDown(event.mouse); break; |