Make ending level be named "Ending" instead of "Peach's Castle"

This commit is contained in:
Agent X 2024-08-31 22:27:23 -04:00
parent 6e38084cf9
commit e73a95368c
1 changed files with 4 additions and 0 deletions

View File

@ -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 // Default
else { else {
snprintf(output, 256, "Peach's Castle"); snprintf(output, 256, "Peach's Castle");