diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-07 02:00:41 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-07 02:00:41 -0400 |
commit | 463d79c7c1b945db53b1d4278e3e05a65bbe1ee1 (patch) | |
tree | a4d566c8ab615734992cda34a94422e40e83521e /include/global.h | |
parent | 4aed5b078a53291820cca641b2c3a7e41c9f56de (diff) |
Start documenting naming screen
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 9612a25f0..478c9f69a 100644 --- a/include/global.h +++ b/include/global.h @@ -102,6 +102,7 @@ #define TEST_BUTTON(field, button) ({(field) & (button);}) #define JOY_NEW(button) TEST_BUTTON(gMain.newKeys, button) #define JOY_HELD(button) TEST_BUTTON(gMain.heldKeys, button) +#define JOY_REPEAT(button) TEST_BUTTON(gMain.newAndRepeatedKeys, button) #define S16TOPOSFLOAT(val) \ ({ \ |