mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-21 21:11:21 +00:00
Fix hang due to comparison not working on at least GCC 9.1
I have no idea what the fuck is going on here. k infinitely ascends. (Even above integer restrictions when I made it UINT8.) I can only imagine some kind of fuckery in the stack. Surely this is a compiler error.
This commit is contained in:
parent
b14602bad9
commit
d4b778884b
1 changed files with 2 additions and 1 deletions
|
|
@ -3320,7 +3320,8 @@ void A_SkullAttack(mobj_t *actor)
|
|||
fixed_t oldradius = mobjinfo[MT_NULL].radius;
|
||||
fixed_t oldheight = mobjinfo[MT_NULL].height;
|
||||
mobj_t *check;
|
||||
INT32 i, j, k;
|
||||
INT32 i, j;
|
||||
static INT32 k;
|
||||
boolean allow;
|
||||
angle_t testang;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue