aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/animation.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-09-20 10:41:52 -0400
committerPaul Gilbert2014-09-20 10:41:52 -0400
commit9a0ba3e63443fcfef4d2edcc48e06faf0820b0c3 (patch)
treeaadd0ea0d364bf6a27336da9aca938df48c0f657 /engines/mads/animation.h
parentc1fcd5aa28633b65dd24ff5aae9f896351808f0c (diff)
downloadscummvm-rg350-9a0ba3e63443fcfef4d2edcc48e06faf0820b0c3.tar.gz
scummvm-rg350-9a0ba3e63443fcfef4d2edcc48e06faf0820b0c3.tar.bz2
scummvm-rg350-9a0ba3e63443fcfef4d2edcc48e06faf0820b0c3.zip
MADS: Add new Animation fields needed by AnimView
Diffstat (limited to 'engines/mads/animation.h')
-rw-r--r--engines/mads/animation.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/mads/animation.h b/engines/mads/animation.h
index 4bf330e3a3..c14f7c8710 100644
--- a/engines/mads/animation.h
+++ b/engines/mads/animation.h
@@ -34,8 +34,8 @@
namespace MADS {
enum AnimFlag {
- ANIMFLAG_DITHER = 0x0001, // Dither to 16 colors
- ANIMFLAG_CUSTOM_FONT = 0x0020, // Load ccustom font
+ ANIMFLAG_DITHER = 0x1000, // Dither to 16 colors
+ ANIMFLAG_CUSTOM_FONT = 0x2000, // Load ccustom font
ANIMFLAG_LOAD_BACKGROUND = 0x0100, // Load background
ANIMFLAG_LOAD_BACKGROUND_ONLY = 0x0200 // Load background only
};
@@ -82,7 +82,7 @@ public:
int _msgIndex;
int _numTicks;
Common::Point _posAdjust;
- int _field8;
+ Common::Point _scroll;
/**
* Loads data for the record
@@ -116,7 +116,8 @@ public:
int _miscEntriesCount;
int _frameEntriesCount;
int _messagesCount;
- byte _flags;
+ int _loadFlags;
+ int _charSpacing;
AnimBgType _bgType;
int _roomNumber;
bool _manualFlag;