From c41f231de0292102aeafc165de1d0f22a6f89b69 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 21 Nov 2022 16:06:45 -0500 Subject: [PATCH] No reference count for TryMoveResult_t --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index 0e1f5fbc1..97ea69da7 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -2145,7 +2145,7 @@ boolean P_CheckPosition(mobj_t *thing, fixed_t x, fixed_t y, TryMoveResult_t *re if (result != NULL) { result->line = tm.blockingline; - P_SetTarget(&result->mo, tm.hitthing); + result->mo = tm.hitthing; } return blockval;