mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Set exact variable sizes for VC10 state, to avoid more regressions.
svn-id: r26770
This commit is contained in:
parent
1a69604e82
commit
3ad8770f96
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user