From 4974b04ddd142a477c2e5ae7c9cb7f9cd1821605 Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 18 Mar 2023 03:41:23 -0700 Subject: [PATCH] g_demo.c: fix skip of EZT_ITEMDATA blame f86f794d2 --- src/g_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_demo.c b/src/g_demo.c index 2589ade80..7785763f7 100644 --- a/src/g_demo.c +++ b/src/g_demo.c @@ -1344,7 +1344,7 @@ void G_GhostTicker(void) if (xziptic & EZT_SPRITE) g->mo->sprite = READUINT16(g->p); if (xziptic & EZT_ITEMDATA) - g->p += 3; // itemtype, itemamount, bumpers + g->p += 1 + 1 + 4; // itemtype, itemamount, health if (xziptic & EZT_STATDATA) { UINT8 skinid = READUINT8(g->p);