mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-29 04:50:42 +00:00
- fixed: In SW the automap follow mode blocked all game input, even when the automap was off.
This commit is contained in:
parent
ce853c5376
commit
7d30218d8e
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ getinput(SW_PACKET *loc, SWBOOL tied)
|
||||||
// If in 2D follow mode, scroll around using glob vars
|
// If in 2D follow mode, scroll around using glob vars
|
||||||
// Tried calling this in domovethings, but key response it too poor, skips key presses
|
// Tried calling this in domovethings, but key response it too poor, skips key presses
|
||||||
// Note: this get called only during follow mode
|
// Note: this get called only during follow mode
|
||||||
if (!tied && automapFollow && pp == Player + myconnectindex && !Prediction)
|
if (!tied && automapFollow && automapMode != am_off && && pp == Player + myconnectindex && !Prediction)
|
||||||
MoveScrollMode2D(Player + myconnectindex);
|
MoveScrollMode2D(Player + myconnectindex);
|
||||||
|
|
||||||
// !JIM! Added M_Active() so that you don't move at all while using menus
|
// !JIM! Added M_Active() so that you don't move at all while using menus
|
||||||
|
|
Loading…
Reference in a new issue