From 74dd2479c95094906aa92a3789f97054d340cfa1 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 26 Dec 2002 01:15:09 +0000 Subject: 640*480 = 307200 > 65536: uin16 not sufficient to store the VirtScreen size svn-id: r6156 --- scumm/gfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3