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
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)