diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/intern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/agos/intern.h b/engines/agos/intern.h index f39ca7d3da..a863dc7c0f 100644 --- a/engines/agos/intern.h +++ b/engines/agos/intern.h @@ -131,11 +131,11 @@ struct IconBlock { struct WindowBlock { byte mode; byte flags; - uint16 x, y; - uint16 width, height; - uint16 textColumn, textRow; + int16 x, y; + int16 width, height; + int16 textColumn, textRow; + int16 scrollY; uint16 textColumnOffset, textLength, textMaxLength; - uint16 scrollY; uint8 fill_color, text_color; IconBlock *iconPtr; WindowBlock() { memset(this, 0, sizeof(*this)); } |