Special stages show their level name in the pause menu again
This commit is contained in:
parent
d6b2cccff5
commit
60a2f1d553
|
@ -2371,7 +2371,6 @@ u8 gTextCourseArr[][7] = {
|
||||||
void render_pause_my_score_coins(void) {
|
void render_pause_my_score_coins(void) {
|
||||||
// sanity check
|
// sanity check
|
||||||
if (!COURSE_IS_VALID_COURSE(gCurrCourseNum)) { return; }
|
if (!COURSE_IS_VALID_COURSE(gCurrCourseNum)) { return; }
|
||||||
if (gCurrActNum <= 0 || gCurrActNum > 6) { return; }
|
|
||||||
|
|
||||||
#ifdef VERSION_EU
|
#ifdef VERSION_EU
|
||||||
u8 textMyScore[][10] = {
|
u8 textMyScore[][10] = {
|
||||||
|
@ -2452,7 +2451,9 @@ void render_pause_my_score_coins(void) {
|
||||||
print_generic_string(CRS_NUM_X1, 157, strCourseNum);
|
print_generic_string(CRS_NUM_X1, 157, strCourseNum);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
actName = segmented_to_virtual(actNameTbl[(gCurrCourseNum - 1) * 6 + gDialogCourseActNum - 1]);
|
if (gDialogCourseActNum >= 1 && gCurrActNum <= 6) {
|
||||||
|
actName = segmented_to_virtual(actNameTbl[(gCurrCourseNum - 1) * 6 + gDialogCourseActNum - 1]);
|
||||||
|
}
|
||||||
|
|
||||||
if (starFlags & (1 << (gDialogCourseActNum - 1))) {
|
if (starFlags & (1 << (gDialogCourseActNum - 1))) {
|
||||||
print_generic_string(TXT_STAR_X, 140, textStar);
|
print_generic_string(TXT_STAR_X, 140, textStar);
|
||||||
|
|
Loading…
Reference in New Issue