User input events first take

This commit is contained in:
ZZYZX 2017-02-03 12:28:40 +02:00
commit 9bb4cf1c03
7 changed files with 555 additions and 51 deletions

View file

@ -287,6 +287,9 @@ void D_ProcessEvents (void)
continue; // console ate the event
if (M_Responder (ev))
continue; // menu ate the event
// check events
if (E_Responder(ev)) // [ZZ] ZScript ate the event
continue;
G_Responder (ev);
}
}