Skip to content

Commit

Permalink
MADS: Fix ANIMFLAG_DITHER value
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Nov 11, 2015
1 parent 0195ee5 commit eb98819
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions engines/mads/animation.h
Expand Up @@ -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 {
Expand Down

0 comments on commit eb98819

Please sign in to comment.