summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorN <71219152+PokeCodec@users.noreply.github.com>2021-01-25 21:37:04 -0500
committerGitHub <noreply@github.com>2021-01-25 21:37:04 -0500
commitb1a29e501716edcd98be24811241289a66a39496 (patch)
treef046ea8dc285b136e4f2f170691986a7428b243f /src
parent8fe4d004e369ee8378f4295b0e3926fbe9df7627 (diff)
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)