diff options
author | Marisa-Chan | 2013-12-04 14:00:48 +0000 |
---|---|---|
committer | Marisa-Chan | 2013-12-04 14:00:48 +0000 |
commit | 066cc74d9690222cb6af8cfc08b840eaffd57764 (patch) | |
tree | 210725a0cf2a5916ec5d10b02c93253ba22d2eff /engines/zvision/push_toggle_control.cpp | |
parent | f3e2857cde044019dc322eba46bbdcc854fd4839 (diff) | |
download | scummvm-rg350-066cc74d9690222cb6af8cfc08b840eaffd57764.tar.gz scummvm-rg350-066cc74d9690222cb6af8cfc08b840eaffd57764.tar.bz2 scummvm-rg350-066cc74d9690222cb6af8cfc08b840eaffd57764.zip |
ZVISION: Refactoring cursor manager into simple and full-functionally.
Diffstat (limited to 'engines/zvision/push_toggle_control.cpp')
-rw-r--r-- | engines/zvision/push_toggle_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/push_toggle_control.cpp b/engines/zvision/push_toggle_control.cpp index 88619e8f97..86f499739c 100644 --- a/engines/zvision/push_toggle_control.cpp +++ b/engines/zvision/push_toggle_control.cpp @@ -88,7 +88,7 @@ bool PushToggleControl::onMouseMove(const Common::Point &screenSpacePos, const C return false; if (_hotspot.contains(backgroundImageSpacePos)) { - _engine->getCursorManager()->changeCursor(_hoverCursor); + _engine->getCursorManager()->changeCursor(_engine->getCursorManager()->getCursorId(_hoverCursor)); return true; } |