diff options
author | N <71219152+PokeCodec@users.noreply.github.com> | 2021-01-25 21:37:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 21:37:04 -0500 |
commit | b1a29e501716edcd98be24811241289a66a39496 (patch) | |
tree | f046ea8dc285b136e4f2f170691986a7428b243f /src | |
parent | 8fe4d004e369ee8378f4295b0e3926fbe9df7627 (diff) |
Use INTR_FLAG_VBLANK instead of constant 0x1
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
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) |