mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
Tiny error message cleanup
git-svn-id: https://svn.eduke32.com/eduke32@7925 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ca8f8c0dbd
commit
1413c7fd5c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue