Skip to content

Commit

Permalink
Doom64|Fixed: Compiler warning about pointer types
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 29, 2013
1 parent 7b95f97 commit 3b189c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/doom64/src/p_mobj.c
Expand Up @@ -654,7 +654,7 @@ void P_MobjThinker(mobj_t *mobj)
else if(!FEQUAL(mobj->origin[VZ], mobj->floorZ) || !FEQUAL(mobj->mom[MZ], 0))
{
P_MobjMoveZ(mobj);
if(mobj->thinker.function != P_MobjThinker) // Must've been removed.
if(mobj->thinker.function != (thinkfunc_t) P_MobjThinker) // Must've been removed.
return; // Mobj was removed.
}
// Non-sentient objects at rest.
Expand Down

0 comments on commit 3b189c8

Please sign in to comment.