Skip to content

Commit

Permalink
Win32: Fixed build (there is no type "bool")
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 22, 2011
1 parent 87d22bb commit e971891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/cl_player.c
Expand Up @@ -175,7 +175,7 @@ void ClPlayer_ApplyPendingFixes(int plrNum)
mobj_t *clmo = ClPlayer_ClMobj(plrNum);
ddplayer_t *ddpl = &plr->shared;
mobj_t *mo = ddpl->mo;
bool sendAck = false;
boolean sendAck = false;

// If either mobj is missing, the fix cannot be applied yet.
if(!mo || !clmo) return;
Expand Down

0 comments on commit e971891

Please sign in to comment.