- fixed confirmation string for deleting savegames.

SVN r526 (trunk)
This commit is contained in:
Christoph Oelckers 2007-05-01 10:09:04 +00:00
commit bbb99f1ce6
2 changed files with 3 additions and 6 deletions

View file

@ -2979,10 +2979,8 @@ bool M_SaveLoadResponder (event_t *ev)
case '\b':
if (SelSaveGame != &NewSaveNode)
{
EndString
<< GStrings("MNU_DELETESG") << TEXTCOLOR_WHITE
<< SelSaveGame->Title << TEXTCOLOR_NORMAL "?\n\n"
<< GStrings("MNU_PRESSYN");
EndString.Format("%s" TEXTCOLOR_WHITE "%s" TEXTCOLOR_NORMAL "?\n\n%s",
GStrings("MNU_DELETESG"), SelSaveGame->Title, GStrings("PRESSYN"));
M_StartMessage (EndString, M_DeleteSaveResponse, true);
}