mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 03:40:50 +00:00
- fix 'Quick Turn' for Duke.
This commit is contained in:
parent
be0cbeed65
commit
54d73ce9f8
3 changed files with 3 additions and 3 deletions
|
@ -796,7 +796,7 @@ void applylook(int snum, double factor)
|
|||
p->addrotscrnang(factor * -24);
|
||||
}
|
||||
|
||||
if (p->one_eighty_count < 0 && p->on_crane == 0)
|
||||
if (p->one_eighty_count < 0 && p->on_crane < 0)
|
||||
{
|
||||
fixed_t add = fix16_from_dbl(factor * 128);
|
||||
p->one_eighty_count += add;
|
||||
|
|
|
@ -44,7 +44,7 @@ K "+See_Coop_View"
|
|||
Mouse1 "+Fire"
|
||||
|
||||
|
||||
Backspace "TurnAround"
|
||||
Backspace "turnaround"
|
||||
Scroll "HolsterWeapon"
|
||||
MWheelUp "weapprev"
|
||||
MWheelDown "weapnext"
|
||||
|
|
|
@ -585,7 +585,7 @@ OptionMenu "ActionControlsMenu"// protected
|
|||
StaticText ""
|
||||
Control "$CNTRLMNU_TURNLEFT" , "+turn_left"
|
||||
Control "$CNTRLMNU_TURNRIGHT" , "+turn_right"
|
||||
Control "$CNTRLMNU_TURN180" , "+turnaround"
|
||||
Control "$CNTRLMNU_TURN180" , "turnaround"
|
||||
|
||||
StaticText ""
|
||||
Control "$CNTRLMNU_JUMP" , "+jump"
|
||||
|
|
Loading…
Reference in a new issue