mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-29 20:50:58 +00:00
Merge branch 'bot-flip-mistyped' into 'master'
Bot's `flip` variable is declared the wrong type See merge request STJr/SRB2Internal!496
This commit is contained in:
commit
fe1bb6f716
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ static inline void B_BuildTailsTiccmd(mobj_t *sonic, mobj_t *tails, ticcmd_t *cm
|
|||
player_t *player = sonic->player, *bot = tails->player;
|
||||
ticcmd_t *pcmd = &player->cmd;
|
||||
boolean water = tails->eflags & MFE_UNDERWATER;
|
||||
boolean flip = P_MobjFlip(tails);
|
||||
SINT8 flip = P_MobjFlip(tails);
|
||||
boolean _2d = (tails->flags2 & MF2_TWOD) || twodlevel;
|
||||
fixed_t scale = tails->scale;
|
||||
|
||||
|
|
Loading…
Reference in a new issue