From 8c19477ad8a0bc07d437b3c365d37d8ef44df147 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 15 Mar 2023 13:12:19 +0000 Subject: [PATCH] Self-review: Correct to say "GP & Time Attack data" --- src/menus/options-data-erase-1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menus/options-data-erase-1.c b/src/menus/options-data-erase-1.c index 3a40ed70f..faf893d32 100644 --- a/src/menus/options-data-erase-1.c +++ b/src/menus/options-data-erase-1.c @@ -19,7 +19,7 @@ menuitem_t OPTIONS_DataErase[] = {IT_STRING | IT_CALL, "Erase Statistics Data", "Be careful! What's deleted is gone forever!", 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}, {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) eschoice = M_GetText("Statistics data"); 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) eschoice = M_GetText("ALL game data"); else