Skip to content

Commit

Permalink
com_phys_ode.c: fix tiny discrepancy.
Browse files Browse the repository at this point in the history
  • Loading branch information
eukara committed Oct 26, 2024
1 parent b7cc45f commit b0e74e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/common/com_phys_ode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b0e74e8

Please sign in to comment.