From 7c18d130f23da29b8d07bb89b3da83df6723b605 Mon Sep 17 00:00:00 2001 From: wolfy852 Date: Thu, 31 Jan 2019 23:21:00 -0600 Subject: [PATCH] Fix replay weirdness Sryder's Pleasure Castle ghost tries to return to England with this line. --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index dcd67b40..58f8b0d9 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -5141,7 +5141,7 @@ void G_GhostTicker(void) for (i = 0; i < count; i++) { g->p += 4; // reserved - demo_p += 4; // backwards compat. + type = READUINT32(g->p); health = READUINT16(g->p); x = READFIXED(g->p); y = READFIXED(g->p);