mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Remove shift+F12 shortcut
This would conflict if your shift key is bound to a control =((
This commit is contained in:
parent
28dba7f3c1
commit
ddc708ac87
1 changed files with 4 additions and 2 deletions
|
@ -1969,8 +1969,10 @@ static boolean ViewpointSwitchResponder(event_t *ev)
|
|||
direction = 1;
|
||||
if (ev->key == gamecontrol[GC_VIEWPOINTPREV][0] || ev->key == gamecontrol[GC_VIEWPOINTPREV][1])
|
||||
direction = -1;
|
||||
if (shiftdown)
|
||||
direction = -direction;
|
||||
// This enabled reverse-iterating with shift+F12, sadly I had to
|
||||
// disable this in case your shift key is bound to a control =((
|
||||
//if (shiftdown)
|
||||
// direction = -direction;
|
||||
|
||||
// allow spy mode changes even during the demo
|
||||
if (!(gamestate == GS_LEVEL && ev->type == ev_keydown && direction != 0))
|
||||
|
|
Loading…
Reference in a new issue