diff options
author | James Brown | 2003-01-01 09:02:36 +0000 |
---|---|---|
committer | James Brown | 2003-01-01 09:02:36 +0000 |
commit | be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e (patch) | |
tree | a3deea629bf1fc5eef776e16a7ba323036fb5484 | |
parent | b429b0c0bd32887a7112971db1704e491899625e (diff) | |
download | scummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.tar.gz scummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.tar.bz2 scummvm-rg350-be8810eaa90149c8df9a1d10ce3028e1c6c4bd7e.zip |
Fix CMI room segfaults (too few zbuffers defined)
svn-id: r6310
-rw-r--r-- | scumm/gfx.cpp | 2 |
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; |