From b0e74e893c27b6216616840ac1e457fa33ce2632 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Sat, 26 Oct 2024 14:40:22 -0700 Subject: [PATCH] com_phys_ode.c: fix tiny discrepancy. --- engine/common/com_phys_ode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/com_phys_ode.c b/engine/common/com_phys_ode.c index 41122641d..690e0e61a 100644 --- a/engine/common/com_phys_ode.c +++ b/engine/common/com_phys_ode.c @@ -1595,7 +1595,7 @@ static void World_ODE_Frame_JointFromEntity(world_t *world, wedict_t *ed) jgid = (dJointGroupID)jointgroup; } - ed->rbe.jointgroup = jgid; + ed->rbe.jointgroup = (int)jgid; } AngleVectorsFLU(angles, forward, left, up);