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

View file

@ -1067,7 +1067,7 @@ void G_PrintGameQuotes(int32_t snum)
if (EDUKE32_PREDICT_FALSE(apStrings[ps->ftq] == NULL)) 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; break;
} }
@ -1141,7 +1141,7 @@ void P_DoQuote(int32_t q, DukePlayer_t *p)
if (EDUKE32_PREDICT_FALSE(apStrings[q] == NULL)) 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; return;
} }