From f51a223642d384baedd1bb7067a1238af99b4dd5 Mon Sep 17 00:00:00 2001 From: GenericHeroGuy Date: Sun, 31 Aug 2025 21:57:03 +0200 Subject: [PATCH] Add 1 to the version check for ZT_BOT This should let demos recorded on blankart-dev still work properly demoversion is getting incremented soon anyway... --- 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 aa890f090..0bdae712a 100644 --- a/src/g_demo.c +++ b/src/g_demo.c @@ -393,7 +393,7 @@ static UINT8 *G_ReadZipTic(ticcmd_t *cmd, UINT8 *dp, UINT16 version) if (ziptic & ZT_FLAGS) cmd->flags = READUINT8(dp); - if (version < 0x0009 && ziptic & 0x8000) // ZT_BOT + if (version < 0x000a && ziptic & 0x8000) // ZT_BOT { UINT16 botziptic = READUINT16(dp); if (botziptic & 1) READSINT8(dp);