diff options
author | Eugene Sandulenko | 2016-09-30 17:04:16 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-30 22:35:55 +0200 |
commit | b1c10e147c3c255890ef15236f27b615b7df38f7 (patch) | |
tree | 0d44e7d8c76e8c0067611be1a2c6631d672b7b71 /engines | |
parent | b6b9e2fce484b8e11f056700f5a6cc54bebb4fbd (diff) | |
download | scummvm-rg350-b1c10e147c3c255890ef15236f27b615b7df38f7.tar.gz scummvm-rg350-b1c10e147c3c255890ef15236f27b615b7df38f7.tar.bz2 scummvm-rg350-b1c10e147c3c255890ef15236f27b615b7df38f7.zip |
FULLPIPE: Fix cursor color on Inflater in scene10
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/scenes/scene10.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene10.cpp b/engines/fullpipe/scenes/scene10.cpp index 47328967d0..990a8f2525 100644 --- a/engines/fullpipe/scenes/scene10.cpp +++ b/engines/fullpipe/scenes/scene10.cpp @@ -65,7 +65,7 @@ int scene10_updateCursor() { if (g_fp->_objectIdAtCursor == ANI_PACHKA || g_fp->_objectIdAtCursor == ANI_GUM) { if (g_fp->_cursorId == PIC_CSR_ITN) { if (g_vars->scene10_hasGum) - g_fp->_cursorId = (sceneHandler10_inflaterIsBlind() != 0) ? PIC_CSR_ITN_RED : PIC_CSR_ITN_GREEN; + g_fp->_cursorId = (sceneHandler10_inflaterIsBlind() != 0) ? PIC_CSR_ITN_GREEN : PIC_CSR_ITN_RED; else g_fp->_cursorId = PIC_CSR_DEFAULT; } |