From cf75d45555ce201b12d55be4bd04954d8a7c629e Mon Sep 17 00:00:00 2001 From: Monster Iestyn Date: Fri, 18 Oct 2019 13:37:42 +0100 Subject: [PATCH] Fix missing & which I totally forgot about in writing this fix (yes this is the "compile error" everyone was talking about) --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index e70bafbce..a4416b1dc 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -780,7 +780,7 @@ static void resynch_read_player(resynch_pak *rsp) players[i].mo->sprite2 = rsp->sprite2; players[i].mo->anim_duration = SHORT(rsp->anim_duration); players[i].mo->tics = LONG(rsp->tics); - players[i].mo->state = states[LONG(rsp->statenum)]; + players[i].mo->state = &states[LONG(rsp->statenum)]; players[i].mo->x = LONG(rsp->x); players[i].mo->y = LONG(rsp->y);