aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/core/link_item.cpp2
-rw-r--r--engines/titanic/game/bottom_of_well_monitor.cpp2
-rw-r--r--engines/titanic/support/mouse_cursor.h6
3 files changed, 5 insertions, 5 deletions
diff --git a/engines/titanic/core/link_item.cpp b/engines/titanic/core/link_item.cpp
index 977d2f170b..a131b85654 100644
--- a/engines/titanic/core/link_item.cpp
+++ b/engines/titanic/core/link_item.cpp
@@ -132,7 +132,7 @@ void CLinkItem::load(SimpleFile *file) {
_cursorId = CURSOR_MOVE_FORWARD;
break;
default:
- _cursorId = CURSOR_MOVE_FORWARD2;
+ _cursorId = CURSOR_MOVE_THROUGH;
break;
}
}
diff --git a/engines/titanic/game/bottom_of_well_monitor.cpp b/engines/titanic/game/bottom_of_well_monitor.cpp
index bf19023d5d..3c87735492 100644
--- a/engines/titanic/game/bottom_of_well_monitor.cpp
+++ b/engines/titanic/game/bottom_of_well_monitor.cpp
@@ -56,7 +56,7 @@ bool CBottomOfWellMonitor::ActMsg(CActMsg *msg) {
CVisibleMsg visibleMsg;
visibleMsg.execute("CrushedTV2NE");
visibleMsg.execute("CrushedTV4SW");
- _cursorId = CURSOR_MOVE_DOWN1;
+ _cursorId = CURSOR_LOOK_DOWN;
} else if (msg->_action == "TelevisionTaken") {
_tvPresent = false;
_cursorId = CURSOR_ARROW;
diff --git a/engines/titanic/support/mouse_cursor.h b/engines/titanic/support/mouse_cursor.h
index 325e31de96..aff3bacbc1 100644
--- a/engines/titanic/support/mouse_cursor.h
+++ b/engines/titanic/support/mouse_cursor.h
@@ -36,9 +36,9 @@ enum CursorId {
CURSOR_MOVE_LEFT = 2,
CURSOR_MOVE_RIGHT = 3,
CURSOR_MOVE_FORWARD = 4,
- CURSOR_MOVE_UP = 5,
- CURSOR_MOVE_DOWN1 = 6,
- CURSOR_MOVE_FORWARD2 = 7,
+ CURSOR_LOOK_UP = 5,
+ CURSOR_LOOK_DOWN = 6,
+ CURSOR_MOVE_THROUGH = 7,
CURSOR_HAND = 8,
CURSOR_ACTIVATE = 9,
CURSOR_INVALID = 10,