From 91ec80d9ed812b2ad4cfd41fc26a3efcc0a2fd1c Mon Sep 17 00:00:00 2001 From: GenericHeroGuy Date: Mon, 26 May 2025 17:34:33 +0200 Subject: [PATCH] Fix the bad cycle message --- src/p_spec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_spec.c b/src/p_spec.c index cafaa679d..c993fa684 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -239,7 +239,7 @@ void P_InitPicAnims(void) { free(anims); I_Error("P_InitPicAnims: bad cycle from %s to %s", - animdefs->startname, animdefs->endname); + animdef->startname, animdef->endname); } lastanim->speed = animdef->speed;