diff --git a/src/nostalgia/core/gba/irq.s b/src/nostalgia/core/gba/irq.s index fe784b43d..a6ee03c84 100644 --- a/src/nostalgia/core/gba/irq.s +++ b/src/nostalgia/core/gba/irq.s @@ -64,14 +64,14 @@ isr: // Interrupt Table Begin // //////////////////////////////////////////////////// - cmp r1, #Int_vblank - ldreq r0, =nostalgia_core_isr_vblank - beq isr_call_handler - cmp r1, #Int_timer0 ldreq r0, =nostalgia_core_isr_timer0 beq isr_call_handler + cmp r1, #Int_vblank + ldreq r0, =nostalgia_core_isr_vblank + beq isr_call_handler + //////////////////////////////////////////////////// // Interrupt Table End // ////////////////////////////////////////////////////