aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/events.cpp')
-rw-r--r--engines/zvision/events.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/zvision/events.cpp b/engines/zvision/events.cpp
index 3163563ad3..17f48db7fc 100644
--- a/engines/zvision/events.cpp
+++ b/engines/zvision/events.cpp
@@ -27,7 +27,7 @@
#include "common/events.h"
#include "engines/util.h"
-#include "zvision/render_manager.h"
+#include "zvision/cursor_manager.h"
namespace ZVision {
@@ -39,6 +39,7 @@ void ZVision::processEvents() {
break;
case Common::EVENT_LBUTTONUP:
+ onMouseUp(_event.mouse);
break;
case Common::EVENT_RBUTTONDOWN:
@@ -78,7 +79,11 @@ void ZVision::processEvents() {
}
void ZVision::onMouseDown(const Common::Point &pos) {
+ _cursorManager->cursorDown(true);
+}
+void ZVision::onMouseUp(const Common::Point &pos) {
+ _cursorManager->cursorDown(false);
}
void ZVision::onMouseMove(const Common::Point &pos) {