prevent cutoff letsago

This commit is contained in:
AloXado320 2020-12-23 10:50:47 -05:00
parent 30c9838203
commit 6ee600146d

View file

@ -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),
/*39*/ SLEEP(/*frames*/ 16),
/*40*/ CLEAR_LEVEL(),
// Prevent cut-off "let's a go" on Non-N64
#ifdef TARGET_N64
/*41*/ SLEEP_BEFORE_EXIT(/*frames*/ 1),
#else
/*41*/ SLEEP_BEFORE_EXIT(/*frames*/ 5),
#endif
// L1:
/*42*/ EXIT(),
};