Self-review: Correct to say "GP & Time Attack data"

This commit is contained in:
toaster 2023-03-15 13:12:19 +00:00
parent edddb26f98
commit 8c19477ad8

View file

@ -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