mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-24 22:02:50 +00:00
- transitioned the local input handler.
There wasn't anything EDuke32-specific in there - nearly everything mapped perfectly to JFDuke.
This commit is contained in:
parent
a0cd407632
commit
ea6c74d0e6
15 changed files with 244 additions and 190 deletions
|
@ -49,15 +49,16 @@
|
|||
|
||||
bool G_Responder (event_t *ev)
|
||||
{
|
||||
FKeyBindings* binds = &Bindings;
|
||||
switch (ev->type)
|
||||
{
|
||||
case EV_KeyDown:
|
||||
if (C_DoKey (ev, &Bindings, &DoubleBindings))
|
||||
if (C_DoKey (ev, binds, &DoubleBindings))
|
||||
return true;
|
||||
break;
|
||||
|
||||
case EV_KeyUp:
|
||||
C_DoKey (ev, &Bindings, &DoubleBindings);
|
||||
C_DoKey (ev, binds, &DoubleBindings);
|
||||
break;
|
||||
|
||||
#if 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue