diff --git a/engines/fullpipe/scenes/scene26.cpp b/engines/fullpipe/scenes/scene26.cpp index 9706bd592779..0efabaeda8d3 100644 --- a/engines/fullpipe/scenes/scene26.cpp +++ b/engines/fullpipe/scenes/scene26.cpp @@ -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; }