aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/vga.h
diff options
context:
space:
mode:
authorTravis Howell2007-05-07 03:40:37 +0000
committerTravis Howell2007-05-07 03:40:37 +0000
commit3ad8770f964277e4bfdd356a641aabfec4199e77 (patch)
treeec1def2e4e387e3314ca5ed59fb1890646d822a0 /engines/agos/vga.h
parent1a69604e82e6bd9be32e7e4411b5a052157eb720 (diff)
downloadscummvm-rg350-3ad8770f964277e4bfdd356a641aabfec4199e77.tar.gz
scummvm-rg350-3ad8770f964277e4bfdd356a641aabfec4199e77.tar.bz2
scummvm-rg350-3ad8770f964277e4bfdd356a641aabfec4199e77.zip
Set exact variable sizes for VC10 state, to avoid more regressions.
svn-id: r26770
Diffstat (limited to 'engines/agos/vga.h')
-rw-r--r--engines/agos/vga.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/agos/vga.h b/engines/agos/vga.h
index c2ba140b35..7a4f06f26f 100644
--- a/engines/agos/vga.h
+++ b/engines/agos/vga.h
@@ -113,14 +113,14 @@ enum DrawFlags {
};
struct VC10_state {
- int image;
+ int16 image;
uint16 flags;
byte palette;
- int x, y;
- int width, height;
- uint draw_width, draw_height;
- uint x_skip, y_skip;
+ int16 x, y;
+ uint16 width, height;
+ uint16 draw_width, draw_height;
+ uint16 x_skip, y_skip;
byte *surf2_addr;
uint surf2_pitch;