diff options
Diffstat (limited to 'src/actions/actiondef.h')
-rw-r--r-- | src/actions/actiondef.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/actions/actiondef.h b/src/actions/actiondef.h index 70e44f794..a192fc4c1 100644 --- a/src/actions/actiondef.h +++ b/src/actions/actiondef.h @@ -26,9 +26,8 @@ #include "input/inputmanager.h" -#define decHandler(name) bool name(const InputEvent &event) -#define impHandler(name) bool name(const InputEvent &event) -#define impHandler0(name) bool name(const InputEvent &event A_UNUSED) +#define impHandler(name) bool name(InputEvent &event) +#define impHandler0(name) bool name(InputEvent &event A_UNUSED) #define callYellowBar(name) \ GameModifiers::name(!inputManager.isActionActive( \ |