mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-30 00:41:24 +00:00
- reimplemented cheats based on ZDoom's cheat parser.
This commit is contained in:
parent
dbd3202433
commit
39185300e7
14 changed files with 602 additions and 963 deletions
|
@ -41,6 +41,7 @@
|
|||
#include "utf8.h"
|
||||
#include "m_joy.h"
|
||||
#include "vm.h"
|
||||
#include "cheathandler.h"
|
||||
|
||||
bool G_Responder(event_t* ev);
|
||||
|
||||
|
@ -73,6 +74,8 @@ void D_ProcessEvents (void)
|
|||
continue; // console ate the event
|
||||
if (M_Responder (ev))
|
||||
continue; // menu ate the event
|
||||
if (Cheat_Responder(ev))
|
||||
continue;
|
||||
G_Responder (ev);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue