aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorTravis Howell2003-12-30 06:24:47 +0000
committerTravis Howell2003-12-30 06:24:47 +0000
commitd8f657adc0190c5cb388594530e9be9e97fc30b2 (patch)
tree8869cf4ffa45d8598df1e0909a737b38cc812a6d /scumm/scumm.h
parent55e02b5b54fc498ebbb56b3294163fe5b1a27238 (diff)
downloadscummvm-rg350-d8f657adc0190c5cb388594530e9be9e97fc30b2.tar.gz
scummvm-rg350-d8f657adc0190c5cb388594530e9be9e97fc30b2.tar.bz2
scummvm-rg350-d8f657adc0190c5cb388594530e9be9e97fc30b2.zip
Add correct solution for drawObjectQue[] overflow in lawn mower mini games of puttputt
svn-id: r12027
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index ae33c3a2ac..2023f06b28 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -913,7 +913,7 @@ protected:
void removeBlastObject(BlastObject *eo);
int _drawObjectQueNr;
- byte _drawObjectQue[700];
+ byte _drawObjectQue[200];
byte _palManipStart, _palManipEnd;
uint16 _palManipCounter;
byte *_palManipPalette;