Make ending level be named "Ending" instead of "Peach's Castle"
This commit is contained in:
parent
6e38084cf9
commit
e73a95368c
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue