diff options
author | Max Horn | 2002-12-26 01:15:09 +0000 |
---|---|---|
committer | Max Horn | 2002-12-26 01:15:09 +0000 |
commit | 74dd2479c95094906aa92a3789f97054d340cfa1 (patch) | |
tree | 093d0e732c70862ef97d8059c26e2cbec1cb5e14 | |
parent | 2739b4410f2d8a9b2f951632b982d06fdc64e624 (diff) | |
download | scummvm-rg350-74dd2479c95094906aa92a3789f97054d340cfa1.tar.gz scummvm-rg350-74dd2479c95094906aa92a3789f97054d340cfa1.tar.bz2 scummvm-rg350-74dd2479c95094906aa92a3789f97054d340cfa1.zip |
640*480 = 307200 > 65536: uin16 not sufficient to store the VirtScreen size
svn-id: r6156
-rw-r--r-- | scumm/gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h index a908646e66..f6117e017f 100644 --- a/scumm/gfx.h +++ b/scumm/gfx.h @@ -44,7 +44,7 @@ struct VirtScreen { /* Virtual screen areas */ int number; uint16 topline; uint16 width, height; - uint16 size; + int size; byte alloctwobuffers; bool scrollable; uint16 xstart; |