aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/sequences.cpp
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-03-02 17:26:12 +0100
committerAdrian Frühwirth2018-03-02 17:26:12 +0100
commitdce8a98a18f4880b5d88d3b1ff31c05a72d370c0 (patch)
tree95796ca2f22cb8787ca75d12629230050b52e195 /engines/tucker/sequences.cpp
parent487baf6f8ece601e5cb11354d74f2d536608417e (diff)
downloadscummvm-rg350-dce8a98a18f4880b5d88d3b1ff31c05a72d370c0.tar.gz
scummvm-rg350-dce8a98a18f4880b5d88d3b1ff31c05a72d370c0.tar.bz2
scummvm-rg350-dce8a98a18f4880b5d88d3b1ff31c05a72d370c0.zip
TUCKER: Add CursorStyle and CursorState enums
Diffstat (limited to 'engines/tucker/sequences.cpp')
-rw-r--r--engines/tucker/sequences.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tucker/sequences.cpp b/engines/tucker/sequences.cpp
index 0151c55eb1..184b70b916 100644
--- a/engines/tucker/sequences.cpp
+++ b/engines/tucker/sequences.cpp
@@ -414,11 +414,11 @@ void TuckerEngine::handleMapSequence() {
if (_nextLocationNum == 9 && _noPositionChangeAfterMap) {
_backgroundSpriteCurrentAnimation = 2;
_backgroundSpriteCurrentFrame = 0;
- setCursorType(2);
+ setCursorState(kCursorStateDisabledHidden);
} else if (_nextLocationNum == 66 && _noPositionChangeAfterMap) {
_backgroundSpriteCurrentAnimation = 1;
_backgroundSpriteCurrentFrame = 0;
- setCursorType(2);
+ setCursorState(kCursorStateDisabledHidden);
}
_noPositionChangeAfterMap = false;
_xPosCurrent = xPos;