mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
Fixes
This commit is contained in:
parent
77c6f40cf8
commit
eee5c4b91c
@ -207,9 +207,10 @@ void Act3::RemovePizza(Act3Ammo& p_p)
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
assert(i != MAX_PIZZAS);
|
||||
#endif
|
||||
|
||||
assert(p_p.IsValid());
|
||||
p_p.Remove();
|
||||
}
|
||||
@ -225,9 +226,10 @@ void Act3::RemoveDonut(Act3Ammo& p_p)
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
assert(i != MAX_DONUTS);
|
||||
#endif
|
||||
|
||||
assert(p_p.IsValid());
|
||||
p_p.Remove();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user