summaryrefslogtreecommitdiff
path: root/src/code/z_debug.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-09-06 01:24:19 -0700
committerGitHub <noreply@github.com>2024-09-06 10:24:19 +0200
commit3faa1c6acce3b317ee23f153d17f0ea66a8f1c79 (patch)
treec08960694a02b5d79a3d6de7e44113b8d0abbbfe /src/code/z_debug.c
parentbb6177e936c535817eded229d1023d0556a67519 (diff)
Move button macros to include/controller.h (#2138)
* Move button macros to include/controller.h * Fix z_mag button ordering
Diffstat (limited to 'src/code/z_debug.c')
-rw-r--r--src/code/z_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_debug.c b/src/code/z_debug.c
index d668f490a..963e934ff 100644
--- a/src/code/z_debug.c
+++ b/src/code/z_debug.c
@@ -168,7 +168,7 @@ void Regs_UpdateEditor(Input* input) {
s32 increment;
s32 i;
- dPadInputCur = input->cur.button & (BTN_DUP | BTN_DLEFT | BTN_DRIGHT | BTN_DDOWN);
+ dPadInputCur = input->cur.button & (BTN_DUP | BTN_DDOWN | BTN_DLEFT | BTN_DRIGHT);
if (CHECK_BTN_ALL(input->cur.button, BTN_L) || CHECK_BTN_ALL(input->cur.button, BTN_R) ||
CHECK_BTN_ALL(input->cur.button, BTN_START)) {