Fixes ScummEngine_v70he::setDefaultCursor to work in 16-bit, using a temporary hack.
svn-id: r41204
This commit is contained in:
parent
ccee18a489
commit
d65bbe1d7a
5 changed files with 101 additions and 9 deletions
|
@ -462,8 +462,12 @@ void ThemeEngine::disable() {
|
|||
_system->hideOverlay();
|
||||
|
||||
if (_useCursor) {
|
||||
#ifdef ENABLE_16BIT
|
||||
CursorMan.popCursor16();
|
||||
#else
|
||||
CursorMan.popCursorPalette();
|
||||
CursorMan.popCursor();
|
||||
#endif
|
||||
}
|
||||
|
||||
_enabled = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue