Skip to content

Commit

Permalink
FULLPIPE: Workaround for cursor in scene26.
Browse files Browse the repository at this point in the history
Fixes bug #9667
  • Loading branch information
sev- committed Dec 11, 2016
1 parent ec73249 commit df896e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engines/fullpipe/scenes/scene26.cpp
Expand Up @@ -69,6 +69,11 @@ int scene26_updateCursor() {
if (g_fp->_objectIdAtCursor != ANI_VENT || g_fp->_cursorId != PIC_CSR_DEFAULT) {
if (g_fp->_cursorId == PIC_CSR_ITN && g_fp->_objectIdAtCursor == PIC_SC26_LTRUBA)
g_fp->_cursorId = PIC_CSR_GOL;

// WORKAROUND: Fixing cursor
if (g_fp->_objectIdAtCursor == PIC_SC26_LTRUBA &&
(g_fp->_cursorId == PIC_CSR_GOU || g_fp->_cursorId == PIC_CSR_GOD || g_fp->_cursorId == PIC_CSR_GOR))
g_fp->_cursorId = PIC_CSR_GOL;
} else {
g_fp->_cursorId = PIC_CSR_ITN;
}
Expand Down

0 comments on commit df896e4

Please sign in to comment.