remove stray trailing '0' from status bar face lump name

This commit is contained in:
Fabian Greffrath 2022-11-04 13:56:20 +01:00 committed by GitHub
parent 7e6d90c01a
commit 59d3a6a80e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);