diff options
author | Eugene Sandulenko | 2014-01-02 13:49:35 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-02 13:49:35 +0200 |
commit | 39b83756b8ecb380c01add00c137ef4765605191 (patch) | |
tree | 63c35706b3105514a71b0e2752fddcf6781e4af1 /engines/fullpipe/scenes | |
parent | b2fe937db5f54499676c860761360ea17df5c8f2 (diff) | |
download | scummvm-rg350-39b83756b8ecb380c01add00c137ef4765605191.tar.gz scummvm-rg350-39b83756b8ecb380c01add00c137ef4765605191.tar.bz2 scummvm-rg350-39b83756b8ecb380c01add00c137ef4765605191.zip |
FULLPIPE: Implement scene30_updateCursor()
Diffstat (limited to 'engines/fullpipe/scenes')
-rw-r--r-- | engines/fullpipe/scenes/scene30.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene30.cpp b/engines/fullpipe/scenes/scene30.cpp index ace3ce0d58..51f6866460 100644 --- a/engines/fullpipe/scenes/scene30.cpp +++ b/engines/fullpipe/scenes/scene30.cpp @@ -81,4 +81,13 @@ void scene30_initScene(Scene *sc, int flag) { g_fp->lift_sub5(sc, QU_SC30_ENTERLIFT, QU_SC30_EXITLIFT); } +int scene30_updateCursor() { + g_fp->updateCursorCommon(); + + if (g_fp->_cursorId == PIC_CSR_ITN && g_fp->_objectIdAtCursor == PIC_SC30_LTRUBA) { + g_fp->_cursorId = PIC_CSR_GOL; + } + return g_fp->_cursorId; +} + } // End of namespace Fullpipe |