From e73a95368c6d179b0d8a3c8136696e6e4a0cfc2b Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Sat, 31 Aug 2024 22:27:23 -0400 Subject: [PATCH] Make ending level be named "Ending" instead of "Peach's Castle" --- src/game/level_info.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/game/level_info.c b/src/game/level_info.c index 6f4e2115..f7a467c3 100644 --- a/src/game/level_info.c +++ b/src/game/level_info.c @@ -230,6 +230,10 @@ const char *get_level_name_ascii(s16 courseNum, s16 levelNum, s16 areaIndex, s16 } } + else if (courseNum == LEVEL_ENDING) { // LEVEL_ENDING has the same course number as the level number + snprintf(output, 256, "Ending"); + } + // Default else { snprintf(output, 256, "Peach's Castle");