- transitioned the local input handler.

There wasn't anything EDuke32-specific in there - nearly everything mapped perfectly to JFDuke.
This commit is contained in:
Christoph Oelckers 2020-07-15 19:48:04 +02:00
parent a0cd407632
commit ea6c74d0e6
15 changed files with 244 additions and 190 deletions

View file

@ -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