diff --git a/src/game/hud.c b/src/game/hud.c index acfd5dc3..52786971 100644 --- a/src/game/hud.c +++ b/src/game/hud.c @@ -312,7 +312,7 @@ void render_hud_unsupported_level(void) { //case COURSE_TTC: // (14) Tick Tock Clock //case COURSE_RR: // (15) Rainbow Ride case COURSE_BITDW: // (16) Bowser in the Dark World - //case COURSE_BITFS: // (17) Bowser in the Fire Sea + case COURSE_BITFS: // (17) Bowser in the Fire Sea //case COURSE_BITS: // (18) Bowser in the Sky case COURSE_PSS: // (19) Princess's Secret Slide case COURSE_COTMC: // (20) Cavern of the Metal Cap diff --git a/src/menu/custom_menu.c b/src/menu/custom_menu.c index c25d8692..d905e95a 100644 --- a/src/menu/custom_menu.c +++ b/src/menu/custom_menu.c @@ -31,7 +31,7 @@ static void menu_main_draw_strings(void) { u8 red = (gGlobalTimer % 20 > 10) ? 0 : 222; if (gGlobalTimer > 200) { red = 222; } gDPSetEnvColor(gDisplayListHead++, 222, red, red, gMenuStringAlpha); - print_generic_ascii_string(71, 55, "For now, most levels are unsupported."); + print_generic_ascii_string(39, 55, "For now, levels after Bowser 2 are unsupported."); } static void host_menu_draw_strings(void) {