diff --git a/src/k_menudraw.c b/src/k_menudraw.c index e9407fe6a..7e744557e 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -2837,7 +2837,7 @@ static void M_DrawCupTitle(INT16 y, levelsearch_t *levelsearch) if (levelsearch->cup == &dummy_lostandfound) { - V_DrawCenteredLSTitleLowString(BASEVIDWIDTH/2, y+6, 0, "Lost and Found"); + V_DrawCenteredLSTitleLowString(BASEVIDWIDTH/2, y+6, 0, "Lost & Found"); } else if (levelsearch->cup) { @@ -7881,7 +7881,7 @@ static void M_DrawStatsMaps(void) else if (mapheaderinfo[mnum]->cup) str = va("%s CUP", mapheaderinfo[mnum]->cup->realname); else - str = "LOST AND FOUND"; + str = "LOST & FOUND"; V_DrawThinString(20, y, highlightflags, str); } diff --git a/src/m_cond.c b/src/m_cond.c index 0deeec924..3ee644cb6 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -1153,7 +1153,7 @@ static void M_PrecacheLevelLocks(void) tempstr = va( "Music: %s #%u %c", - (mapheaderinfo[map]->typeoflevel & TOL_TUTORIAL) ? "Tutorial" : "Lost and Found", + (mapheaderinfo[map]->typeoflevel & TOL_TUTORIAL) ? "Tutorial" : "Lost & Found", positionid + 1, 'A' + j // :D ? );