From eb9881965d7aeda7c01b8de1da141b9dcf3990c0 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Wed, 11 Nov 2015 14:20:15 +0100 Subject: MADS: Fix ANIMFLAG_DITHER value --- engines/mads/animation.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'engines') 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 { -- cgit v1.2.3