diff options
| author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2021-01-26 15:22:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 15:22:24 -0500 |
| commit | b0de03356bc6e30213ebf982859944be1ff6e6b2 (patch) | |
| tree | 9e1b04ba94ec38e47cbacd5dac811a3c5dae7297 | |
| parent | ff8952a3f0b5358d2295bcaca15b853a8efa561c (diff) | |
| parent | b1a29e501716edcd98be24811241289a66a39496 (diff) | |
Merge pull request #1315 from PokeCodec/patch-3
Use INTR_FLAG_VBLANK instead of constant 0x1
| -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) |
