From aae6270e9dd61ca988fb0b60d1342c3b96ddfb3f Mon Sep 17 00:00:00 2001 From: "Marco Antonio J. Costa" Date: Thu, 9 Jan 2025 20:13:56 -0300 Subject: [PATCH] Use the same enums for IntroType as Ja2 --- Data-UB/Scripts/intro.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Data-UB/Scripts/intro.lua b/Data-UB/Scripts/intro.lua index dcab45803..4980b35a9 100644 --- a/Data-UB/Scripts/intro.lua +++ b/Data-UB/Scripts/intro.lua @@ -20,10 +20,10 @@ Video = { } IntroType = { - INTRO_HELI_CRASH = 0, - INTRO_BEGINNING = 1, -- set when viewing the intro at the begining of the game - INTRO_ENDING = 2, -- set when viewing the end game video. - INTRO_SPLASH = 3, + INTRO_BEGINNING = 0, -- set when viewing the intro at the begining of the game + INTRO_ENDING = 1, -- set when viewing the end game video. + INTRO_SPLASH = 2, + INTRO_HELI_CRASH = 3, } ScreenTypes =