Use INTR_FLAG_VBLANK instead of constant 0x1

This commit is contained in:
N
2021-01-25 21:37:04 -05:00
committed by GitHub
parent 8fe4d004e3
commit b1a29e5017

View File

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