diff options
Diffstat (limited to 'src/actions/actiondef.h')
-rw-r--r-- | src/actions/actiondef.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions/actiondef.h b/src/actions/actiondef.h index 6957f0f00..ec10520a0 100644 --- a/src/actions/actiondef.h +++ b/src/actions/actiondef.h @@ -28,6 +28,10 @@ #define impHandler(name) bool name(InputEvent &event) #define impHandler0(name) bool name(InputEvent &event A_UNUSED) +#define impHandlerVoid(name) bool name(InputEvent &event A_UNUSED) \ + { \ + return false; \ + } #define callYellowBar(name) \ GameModifiers::name(!inputManager.isActionActive( \ |