Merge pull request #1315 from PokeCodec/patch-3

Use INTR_FLAG_VBLANK instead of constant 0x1
This commit is contained in:
luckytyphlosion 2021-01-26 15:22:24 -05:00 committed by GitHub
commit b0de03356b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -298,7 +298,7 @@ void InitIntrHandlers(void)
REG_IME = 1;
EnableInterrupts(0x1);
EnableInterrupts(INTR_FLAG_VBLANK);
}
void SetVBlankCallback(IntrCallback callback)