diff options
Diffstat (limited to 'engines/parallaction/zone.h')
-rw-r--r-- | engines/parallaction/zone.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/parallaction/zone.h b/engines/parallaction/zone.h index f9d9ce6a0b..8a32f1f5f0 100644 --- a/engines/parallaction/zone.h +++ b/engines/parallaction/zone.h @@ -124,13 +124,13 @@ struct ZoneLabel { }; struct Zone : public Node { - union { - Rect _limits; // for zones - struct { // for animations - Point _position; - Point _oldposition; - } pos; - }; + + int16 _left; + int16 _top; + int16 _right; + int16 _bottom; + Point _oldposition; + uint32 _type; uint32 _flags; // char* _labeltext; |