From 27b72ccbf57943fe7fde39277c3056e2a39e281e Mon Sep 17 00:00:00 2001 From: ThatAwesomeGuy173 Date: Tue, 25 Aug 2020 23:12:31 -0600 Subject: [PATCH] Replace 'ignoring skin' debug print with a proper console warning --- src/r_things.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_things.c b/src/r_things.c index 25c4edb3..9cb35e19 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -2746,7 +2746,7 @@ void R_AddSkins(UINT16 wadnum) if (numskins >= MAXSKINS) { - CONS_Debug(DBG_RENDER, "ignored skin (%d skins maximum)\n", MAXSKINS); + CONS_Alert(CONS_WARNING, M_GetText("Unable to add skin, too many characters are loaded (%d maximum)\n"), MAXSKINS); continue; // so we know how many skins couldn't be added } buf = W_CacheLumpNumPwad(wadnum, lump, PU_CACHE);