aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
authorJames Brown2003-01-01 09:02:36 +0000
committerJames Brown2003-01-01 09:02:36 +0000
commitbe8810eaa90149c8df9a1d10ce3028e1c6c4bd7e (patch)
treea3deea629bf1fc5eef776e16a7ba323036fb5484 /scumm/gfx.cpp
parentb429b0c0bd32887a7112971db1704e491899625e (diff)
downloadscummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.tar.gz
scummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.tar.bz2
scummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.zip
Fix CMI room segfaults (too few zbuffers defined)
svn-id: r6310
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 750c7fd928..256c4c568d 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -783,7 +783,7 @@ void Gdi::drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, const int h,
{
byte *backbuff_ptr, *bgbak_ptr, *smap_ptr;
int i;
- byte *zplane_list[6];
+ byte *zplane_list[9];
int bottom;
int numzbuf;