[Scummvm-cvs-logs] scummvm master -> ae61f8ba04aca3cbd84c4dd27f9302744246f109
dreammaster
dreammaster at scummvm.org
Sun Apr 5 04:04:14 CEST 2015
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ae61f8ba04 MADS: Fix wait cursor when leaving crashed ship for the first time
Commit: ae61f8ba04aca3cbd84c4dd27f9302744246f109
https://github.com/scummvm/scummvm/commit/ae61f8ba04aca3cbd84c4dd27f9302744246f109
Author: unknown (dreammaster at scummvm.org)
Date: 2015-04-04T22:03:06-05:00
Commit Message:
MADS: Fix wait cursor when leaving crashed ship for the first time
Changed paths:
engines/mads/events.cpp
diff --git a/engines/mads/events.cpp b/engines/mads/events.cpp
index 767f998..52569af 100644
--- a/engines/mads/events.cpp
+++ b/engines/mads/events.cpp
@@ -84,8 +84,8 @@ void EventsManager::waitCursor() {
CursorType cursorId = (CursorType)MIN(_cursorSprites->getCount(), (int)CURSOR_WAIT);
_newCursorId = cursorId;
if (_cursorId != _newCursorId) {
- changeCursor();
_cursorId = _newCursorId;
+ changeCursor();
}
}
More information about the Scummvm-git-logs
mailing list