aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2015-11-27 23:28:50 +0100
committerEugene Sandulenko2015-11-28 00:06:47 +0100
commit7a21929e08cf2b50b06ba9e7372f10b1d6a956b0 (patch)
treef0ec837102cd484fb99fa9529a424f4821a881d9
parentf1c982586303db745b034eb123d6f56c300de44c (diff)
downloadscummvm-rg350-7a21929e08cf2b50b06ba9e7372f10b1d6a956b0.tar.gz
scummvm-rg350-7a21929e08cf2b50b06ba9e7372f10b1d6a956b0.tar.bz2
scummvm-rg350-7a21929e08cf2b50b06ba9e7372f10b1d6a956b0.zip
FULLPIPE: Fix cursor comparison
-rw-r--r--engines/fullpipe/scenes/scene04.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene04.cpp b/engines/fullpipe/scenes/scene04.cpp
index c0f0960aba..6c361d6f1a 100644
--- a/engines/fullpipe/scenes/scene04.cpp
+++ b/engines/fullpipe/scenes/scene04.cpp
@@ -238,7 +238,7 @@ int scene04_updateCursor() {
}
}
- if (g_fp->_objectIdAtCursor == PIC_CSR_ITN && g_fp->_objectIdAtCursor == PIC_SC4_DOWNTRUBA)
+ if (g_fp->_cursorId == PIC_CSR_ITN && g_fp->_objectIdAtCursor == PIC_SC4_DOWNTRUBA)
g_fp->_cursorId = PIC_CSR_GOD;
return g_fp->_cursorId;