- reimplemented cheats based on ZDoom's cheat parser.

This commit is contained in:
Christoph Oelckers 2020-07-04 15:51:02 +02:00
parent dbd3202433
commit 39185300e7
14 changed files with 602 additions and 963 deletions

View file

@ -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);
}
}