From 59d3a6a80e2bbb8217ec40a8ce1f5f69ececfe54 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Fri, 4 Nov 2022 13:56:20 +0100 Subject: [PATCH] remove stray trailing '0' from status bar face lump name --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 004076c5..9338078b 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1066,7 +1066,7 @@ void ST_loadGraphics(void) // [FG] support face gib animations as in the 3DO/Jaguar/PSX ports for (i = 0; i < ST_NUMXDTHFACES; i++) { - sprintf(namebuf, "STFXDTH%d0", i); + sprintf(namebuf, "STFXDTH%d", i); if (W_CheckNumForName(namebuf) != -1) faces[facenum++] = W_CacheLumpName(namebuf, PU_STATIC);