aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2015-11-11 14:20:15 +0100
committerStrangerke2015-11-11 14:20:15 +0100
commiteb9881965d7aeda7c01b8de1da141b9dcf3990c0 (patch)
tree56b4bf9ec3c01214738ab21331e1b26f3821aafb /engines
parent0195ee51e97081fc5e9a531cf5046bd650a12bab (diff)
downloadscummvm-rg350-eb9881965d7aeda7c01b8de1da141b9dcf3990c0.tar.gz
scummvm-rg350-eb9881965d7aeda7c01b8de1da141b9dcf3990c0.tar.bz2
scummvm-rg350-eb9881965d7aeda7c01b8de1da141b9dcf3990c0.zip
MADS: Fix ANIMFLAG_DITHER value
Diffstat (limited to 'engines')
-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 67adeeb8f8..e13c1c216a 100644
--- a/engines/mads/animation.h
+++ b/engines/mads/animation.h
@@ -34,11 +34,12 @@
namespace MADS {
enum AnimFlag {
- ANIMFLAG_DITHER = 0x1000, // Dither to 16 colors
- ANIMFLAG_CUSTOM_FONT = 0x2000, // Load ccustom font
- ANIMFLAG_LOAD_BACKGROUND = 0x0100, // Load background
+ ANIMFLAG_LOAD_BACKGROUND = 0x0100, // Load background
ANIMFLAG_LOAD_BACKGROUND_ONLY = 0x0200, // Load background only
- ANIMFLAG_ANIMVIEW = 0x4000 // Cutscene animation
+
+ ANIMFLAG_DITHER = 0x0001, // Dither to 16 colors
+ ANIMFLAG_CUSTOM_FONT = 0x2000, // Load custom fonts
+ ANIMFLAG_ANIMVIEW = 0x4000 // Cutscene animation
};
enum AnimBgType {