diff options
| author | unknown | 2015-04-04 22:03:06 -0500 | 
|---|---|---|
| committer | unknown | 2015-04-04 22:03:06 -0500 | 
| commit | ae61f8ba04aca3cbd84c4dd27f9302744246f109 (patch) | |
| tree | 82500e48d394ff70c3ef6d0eb0b0d1f7bb9a75da | |
| parent | 355fa444caadfc951ba289bf23fc275f949bf36e (diff) | |
| download | scummvm-rg350-ae61f8ba04aca3cbd84c4dd27f9302744246f109.tar.gz scummvm-rg350-ae61f8ba04aca3cbd84c4dd27f9302744246f109.tar.bz2 scummvm-rg350-ae61f8ba04aca3cbd84c4dd27f9302744246f109.zip  | |
MADS: Fix wait cursor when leaving crashed ship for the first time
| -rw-r--r-- | engines/mads/events.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/events.cpp b/engines/mads/events.cpp index 767f998d81..52569af375 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();  	}  }  | 
