Tiny error message cleanup

git-svn-id: https://svn.eduke32.com/eduke32@7925 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-08-08 02:22:10 +00:00 committed by Christoph Oelckers
parent ca8f8c0dbd
commit 1413c7fd5c
1 changed files with 2 additions and 2 deletions

View File

@ -1067,7 +1067,7 @@ void G_PrintGameQuotes(int32_t snum)
if (EDUKE32_PREDICT_FALSE(apStrings[ps->ftq] == NULL))
{
OSD_Printf(OSD_ERROR "%s %d null quote %d\n", __FILE__, __LINE__, ps->ftq);
OSD_Printf(OSD_ERROR "%s %d null quote %d\n", "screentext:", __LINE__, ps->ftq);
break;
}
@ -1141,7 +1141,7 @@ void P_DoQuote(int32_t q, DukePlayer_t *p)
if (EDUKE32_PREDICT_FALSE(apStrings[q] == NULL))
{
OSD_Printf(OSD_ERROR "%s %d null quote %d\n", __FILE__, __LINE__, q);
OSD_Printf(OSD_ERROR "%s %d null quote %d\n", "screentext:", __LINE__, q);
return;
}