aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-02-09 22:01:29 +0200
committerEugene Sandulenko2014-02-09 22:02:06 +0200
commita12e32983c9cc9ba4c6b2ae9d2c4b96545df8bd7 (patch)
treeb87c53e4c7d5f74685dcab5965415992e3b0914d /engines/fullpipe/scenes.h
parent2937727018eef69c30a758a31b6fe3a6158ee35e (diff)
downloadscummvm-rg350-a12e32983c9cc9ba4c6b2ae9d2c4b96545df8bd7.tar.gz
scummvm-rg350-a12e32983c9cc9ba4c6b2ae9d2c4b96545df8bd7.tar.bz2
scummvm-rg350-a12e32983c9cc9ba4c6b2ae9d2c4b96545df8bd7.zip
FULLPIPE: Fix buffer overruns in scene27
Diffstat (limited to 'engines/fullpipe/scenes.h')
-rw-r--r--engines/fullpipe/scenes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes.h b/engines/fullpipe/scenes.h
index a83c288e82..0228d1feb0 100644
--- a/engines/fullpipe/scenes.h
+++ b/engines/fullpipe/scenes.h
@@ -201,7 +201,7 @@ struct BallChain {
Ball *field_8;
int numBalls;
Ball *pTail;
- Ball *cPlex;
+ byte *cPlex;
int cPlexLen;
BallChain() : pHead(0), field_8(0), pTail(0), numBalls(0), cPlex(0), cPlexLen(0) {}