mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
do the thing
This commit is contained in:
parent
a57a0985ee
commit
c4bb90fb0c
1 changed files with 1 additions and 1 deletions
|
@ -12001,7 +12001,7 @@ void P_PlayerThink(player_t *player)
|
|||
if (player->mo->movefactor != FRACUNIT) // Friction-scaled acceleration...
|
||||
acceleration = FixedMul(acceleration<<FRACBITS, player->mo->movefactor)>>FRACBITS;
|
||||
|
||||
P_Thrust(player->mo, moveAngle, -acceleration);
|
||||
P_Thrust(player->mo, moveAngle, FixedMul(-acceleration, player->mo->scale));
|
||||
}
|
||||
|
||||
if (!(player->pflags & PF_AUTOBRAKE)
|
||||
|
|
Loading…
Reference in a new issue