diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-23 12:43:43 +0200 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-25 22:45:55 +0200 |
| commit | 852effa474c159398014da736ade6f0fea454de7 (patch) | |
| tree | 97da22c4758ca4156dc9fb7ac123c7a3b0a9e9f5 /src/debug.c | |
| parent | ccba86d292a0e4c8a0e07325ac4fb25e5a58dc89 (diff) | |
Rename objects
Diffstat (limited to 'src/debug.c')
| -rw-r--r-- | src/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug.c b/src/debug.c index f7f70c8a..8a8fc291 100644 --- a/src/debug.c +++ b/src/debug.c @@ -48,10 +48,10 @@ void sub_0805FA98(void) { switch (gInput.newKeys) { case DPAD_UP: - gGenericMenu.unk10.a[1] -= 1; + gGenericMenu.unk10.a[1]--; break; case DPAD_DOWN: - gGenericMenu.unk10.a[1] += 1; + gGenericMenu.unk10.a[1]++; break; case L_BUTTON: gGenericMenu.unk10.a[0] ^= 1; |
