From 1413c7fd5cac889b6db97c1affde7547c8060cd0 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 8 Aug 2019 02:22:10 +0000 Subject: [PATCH] Tiny error message cleanup git-svn-id: https://svn.eduke32.com/eduke32@7925 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/screentext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/duke3d/src/screentext.cpp b/source/duke3d/src/screentext.cpp index 0481ec5a6..aee05502c 100644 --- a/source/duke3d/src/screentext.cpp +++ b/source/duke3d/src/screentext.cpp @@ -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; }