Forgot to commit this compiling fix.

This commit is contained in:
toasterbabe 2017-01-02 19:07:20 +00:00
parent eb22f347f3
commit a4fe3580e2
1 changed files with 1 additions and 1 deletions

View File

@ -4641,7 +4641,7 @@ static void P_Boss4Thinker(mobj_t *mobj)
// Pinch phase! // Pinch phase!
case 4: case 4:
{ {
if (mobj->z < mobj->watertop+(512+128*(mobj->info->damage-mobj->health))<<FRACBITS) if (mobj->z < (mobj->watertop + ((512+128*(mobj->info->damage-mobj->health))<<FRACBITS)))
mobj->momz = 8*FRACUNIT; mobj->momz = 8*FRACUNIT;
else else
mobj->momz = 0; mobj->momz = 0;