From 73982aace602192d0e99ad50b7710cccb1e9ef4c Mon Sep 17 00:00:00 2001 From: kelson8 Date: Thu, 23 Jan 2025 01:09:23 -0500 Subject: [PATCH] Fix my fast loader to fully bypass the intro screen. --- levels/intro/script.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/levels/intro/script.c b/levels/intro/script.c index 2026bbd..f8ed340 100644 --- a/levels/intro/script.c +++ b/levels/intro/script.c @@ -33,16 +33,24 @@ const LevelScript level_intro_entry_1[] = { LOAD_MIO0(/*seg*/ 0x07, _intro_segment_7SegmentRomStart, _intro_segment_7SegmentRomEnd), ALLOC_LEVEL_POOL(), + #ifndef _FAST_LOADER AREA(/*index*/ 1, intro_geo_0002D0), END_AREA(), + #endif //!_FAST_LOADER FREE_LEVEL_POOL(), LOAD_AREA(/*area*/ 1), + + #ifndef _FAST_LOADER CALL(/*arg*/ 0, /*func*/ lvl_intro_update), SLEEP(/*frames*/ 75), TRANSITION(/*transType*/ WARP_TRANSITION_FADE_INTO_COLOR, /*time*/ 16, /*color*/ 0x00, 0x00, 0x00), SLEEP(/*frames*/ 16), + + #endif //!_FAST_LOADER + CMD2A(/*unk2*/ 1), + CLEAR_LEVEL(), SLEEP(/*frames*/ 2),