mirror of
https://github.com/AloUltraExt/sm64ex-alo.git
synced 2025-01-24 00:24:33 -05:00
prevent cutoff letsago
This commit is contained in:
parent
30c9838203
commit
6ee600146d
1 changed files with 5 additions and 0 deletions
|
@ -91,7 +91,12 @@ const LevelScript level_main_menu_entry_2[] = {
|
||||||
/*37*/ TRANSITION(/*transType*/ WARP_TRANSITION_FADE_INTO_COLOR, /*time*/ 16, /*color*/ 0xFF, 0xFF, 0xFF),
|
/*37*/ TRANSITION(/*transType*/ WARP_TRANSITION_FADE_INTO_COLOR, /*time*/ 16, /*color*/ 0xFF, 0xFF, 0xFF),
|
||||||
/*39*/ SLEEP(/*frames*/ 16),
|
/*39*/ SLEEP(/*frames*/ 16),
|
||||||
/*40*/ CLEAR_LEVEL(),
|
/*40*/ CLEAR_LEVEL(),
|
||||||
|
// Prevent cut-off "let's a go" on Non-N64
|
||||||
|
#ifdef TARGET_N64
|
||||||
/*41*/ SLEEP_BEFORE_EXIT(/*frames*/ 1),
|
/*41*/ SLEEP_BEFORE_EXIT(/*frames*/ 1),
|
||||||
|
#else
|
||||||
|
/*41*/ SLEEP_BEFORE_EXIT(/*frames*/ 5),
|
||||||
|
#endif
|
||||||
// L1:
|
// L1:
|
||||||
/*42*/ EXIT(),
|
/*42*/ EXIT(),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue