diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dm/timeline.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/dm/timeline.h b/engines/dm/timeline.h index 030d18db12..ef076be593 100644 --- a/engines/dm/timeline.h +++ b/engines/dm/timeline.h @@ -116,7 +116,9 @@ public: int16 _lightPower; uint16 _slot; // Thing int16 _slotOrdinal; - } _B; + }; + + B_unionTimelineEvent _B; int16 getMapXY() { return (_B._location._mapX << 8) + _B._location._mapY; } @@ -142,7 +144,9 @@ public: uint16 _slot; int16 _soundIndex; byte _ticks; - } _C; + }; + + C_uionTimelineEvent _C; }; // @ EVENT class Timeline { |