diff options
author | Eugene Sandulenko | 2014-06-06 15:12:35 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-06-06 15:12:35 +0300 |
commit | e4403eea5633d406cd182caeee262b9010b34c06 (patch) | |
tree | 0fad045f5601a87e6ac4ada46f5361a203037ee9 | |
parent | 6bf20229138f312060c9496d4a99ace58e0a09d2 (diff) | |
download | scummvm-rg350-e4403eea5633d406cd182caeee262b9010b34c06.tar.gz scummvm-rg350-e4403eea5633d406cd182caeee262b9010b34c06.tar.bz2 scummvm-rg350-e4403eea5633d406cd182caeee262b9010b34c06.zip |
FULLPIPE: Remove extra sizeof. CID 1220156
-rw-r--r-- | engines/fullpipe/scenes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp index b346bf3a17..4caa9a42a5 100644 --- a/engines/fullpipe/scenes.cpp +++ b/engines/fullpipe/scenes.cpp @@ -1463,7 +1463,7 @@ Ball *BallChain::sub04(Ball *ballP, Ball *ballN) { runPtr->p0 = pTail; pTail = runPtr; - runPtr -= sizeof(Ball); + runPtr--; } } |