mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
m_cond.c: more consistent capitalisation in descriptions
- Cup -> CUP (prior art: ZONE) - medals -> Medals
This commit is contained in:
parent
aad62ed62d
commit
76735183c6
1 changed files with 3 additions and 3 deletions
|
|
@ -1125,7 +1125,7 @@ static void M_PrecacheLevelLocks(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
tempstr = va(
|
tempstr = va(
|
||||||
"Music: %s Cup %c%u %c",
|
"Music: %s CUP %c%u %c",
|
||||||
mapheaderinfo[map]->cup->realname,
|
mapheaderinfo[map]->cup->realname,
|
||||||
prefix,
|
prefix,
|
||||||
positionid + 1,
|
positionid + 1,
|
||||||
|
|
@ -2316,7 +2316,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
||||||
}
|
}
|
||||||
|
|
||||||
case UC_TOTALMEDALS: // Requires number of emblems >= x
|
case UC_TOTALMEDALS: // Requires number of emblems >= x
|
||||||
return va("get %d medals", cn->requirement);
|
return va("get %d Medals", cn->requirement);
|
||||||
|
|
||||||
case UC_EMBLEM: // Requires emblem x to be obtained
|
case UC_EMBLEM: // Requires emblem x to be obtained
|
||||||
{
|
{
|
||||||
|
|
@ -2626,7 +2626,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
||||||
{
|
{
|
||||||
if (cup->id != cn->requirement)
|
if (cup->id != cn->requirement)
|
||||||
continue;
|
continue;
|
||||||
return va("%s%s %s Cup",
|
return va("%s%s %s CUP",
|
||||||
completetype, orbetter,
|
completetype, orbetter,
|
||||||
(M_CupLocked(cup) ? "???" : cup->realname)
|
(M_CupLocked(cup) ? "???" : cup->realname)
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue