summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2021-01-26 15:22:24 -0500
committerGitHub <noreply@github.com>2021-01-26 15:22:24 -0500
commitb0de03356bc6e30213ebf982859944be1ff6e6b2 (patch)
tree9e1b04ba94ec38e47cbacd5dac811a3c5dae7297 /src
parentff8952a3f0b5358d2295bcaca15b853a8efa561c (diff)
parentb1a29e501716edcd98be24811241289a66a39496 (diff)
Merge pull request #1315 from PokeCodec/patch-3
Use INTR_FLAG_VBLANK instead of constant 0x1
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index f0ad4ce94..992d23ead 100644
--- a/src/main.c
+++ b/src/main.c
@@ -298,7 +298,7 @@ void InitIntrHandlers(void)
REG_IME = 1;
- EnableInterrupts(0x1);
+ EnableInterrupts(INTR_FLAG_VBLANK);
}
void SetVBlankCallback(IntrCallback callback)