From d3c5ce50f0e973db16fda93552d4c412fe302551 Mon Sep 17 00:00:00 2001 From: Tal Hayon Date: Tue, 5 Apr 2022 22:56:37 +0300 Subject: Add fade flags enum --- include/fade.h | 8 ++++++++ include/script.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/fade.h b/include/fade.h index 0de28da9..c9b30e10 100644 --- a/include/fade.h +++ b/include/fade.h @@ -3,6 +3,14 @@ #include "global.h" +typedef enum { + FADE_IN_OUT = 0x1, + FADE_BLACK_WHITE = 0x2, + FADE_INSTANT = 0x4, + FADE_MOSAIC = 0x8, + FADE_IRIS = 0x10, +} FadeFlags; + /** * @struct FadeControl * @brief Controls screen fading effects. diff --git a/include/script.h b/include/script.h index 519af3c3..3c4e5bfe 100644 --- a/include/script.h +++ b/include/script.h @@ -25,7 +25,7 @@ typedef struct { /*0x4*/ u16 commandIndex; /*0x6*/ u8 commandSize; /*0x7*/ u8 flags; - /*0x8*/ u8 unk_08; + /*0x8*/ u8 fadeSpeed; } ActiveScriptInfo; extern ActiveScriptInfo gActiveScriptInfo; -- cgit v1.2.3