mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Self-review: Correct to say "GP & Time Attack data"
This commit is contained in:
parent
edddb26f98
commit
8c19477ad8
1 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ menuitem_t OPTIONS_DataErase[] =
|
||||||
{IT_STRING | IT_CALL, "Erase Statistics Data", "Be careful! What's deleted is gone forever!",
|
{IT_STRING | IT_CALL, "Erase Statistics Data", "Be careful! What's deleted is gone forever!",
|
||||||
NULL, {.routine = M_EraseData}, EC_STATISTICS, 0},
|
NULL, {.routine = M_EraseData}, EC_STATISTICS, 0},
|
||||||
|
|
||||||
{IT_STRING | IT_CALL, "Erase Time Attack Data", "Be careful! What's deleted is gone forever!",
|
{IT_STRING | IT_CALL, "Erase GP & Time Attack Data", "Be careful! What's deleted is gone forever!",
|
||||||
NULL, {.routine = M_EraseData}, EC_TIMEATTACK, 0},
|
NULL, {.routine = M_EraseData}, EC_TIMEATTACK, 0},
|
||||||
|
|
||||||
{IT_STRING | IT_CALL, "\x85\x45rase all Game Data", "Be careful! What's deleted is gone forever!",
|
{IT_STRING | IT_CALL, "\x85\x45rase all Game Data", "Be careful! What's deleted is gone forever!",
|
||||||
|
|
@ -84,7 +84,7 @@ void M_EraseData(INT32 choice)
|
||||||
else if (optionsmenu.erasecontext == EC_STATISTICS)
|
else if (optionsmenu.erasecontext == EC_STATISTICS)
|
||||||
eschoice = M_GetText("Statistics data");
|
eschoice = M_GetText("Statistics data");
|
||||||
else if (optionsmenu.erasecontext == EC_TIMEATTACK)
|
else if (optionsmenu.erasecontext == EC_TIMEATTACK)
|
||||||
eschoice = M_GetText("Time Attack data");
|
eschoice = M_GetText("GP & Time Attack data");
|
||||||
else if (optionsmenu.erasecontext == EC_ALLGAME)
|
else if (optionsmenu.erasecontext == EC_ALLGAME)
|
||||||
eschoice = M_GetText("ALL game data");
|
eschoice = M_GetText("ALL game data");
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue