summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-02-01 10:22:28 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2020-02-01 10:22:28 -0500
commit01fedfa61c12ed9637124dd1f306e8b8f54ea116 (patch)
treea3015241bc431121f3aa6538ef59deb69de38a59 /include/global.h
parent5ca03c0e32a723f9551b93e5aceb7b39d8ea10e6 (diff)
Minor style consistency edit in union_room_chat
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/global.h b/include/global.h
index 2f87a0c29..2ed7476e7 100644
--- a/include/global.h
+++ b/include/global.h
@@ -74,8 +74,8 @@
// GameFreak never ceases to amaze.
// TODO: Propagate use of this macro
#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_NEW(button) TEST_BUTTON(gMain.newKeys, button)
+#define JOY_HELD(button) TEST_BUTTON(gMain.heldKeys, button)
#define JOY_REPT(button) TEST_BUTTON(gMain.newAndRepeatedKeys, button)
extern u8 gStringVar1[];