aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2002-12-26 01:15:09 +0000
committerMax Horn2002-12-26 01:15:09 +0000
commit74dd2479c95094906aa92a3789f97054d340cfa1 (patch)
tree093d0e732c70862ef97d8059c26e2cbec1cb5e14 /scumm/gfx.h
parent2739b4410f2d8a9b2f951632b982d06fdc64e624 (diff)
downloadscummvm-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
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r--scumm/gfx.h2
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;