--- hatari/src/uae-cpu/events.h 2019/04/01 07:09:31 1.1.1.2 +++ hatari/src/uae-cpu/events.h 2019/04/01 07:10:07 1.1.1.3 @@ -5,8 +5,8 @@ * slowdown. */ -#include "../includes/decode.h" #include "../includes/main.h" +#include "../includes/decode.h" STATIC_INLINE void do_cycles(unsigned long cycles_to_add) { @@ -16,8 +16,8 @@ STATIC_INLINE void do_cycles(unsigned lo PendingInterruptCount -= (short)cycles_to_add; /* Add cycle time including effective address time */ if( PendingInterruptCount<=0 || PendingInterruptFlag) /* Check for any interrupts or flag to service */ { - if( PendingInterruptFlag&PENDING_INTERRUPT_FLAG_TRACE ) - M68000_TraceModeTriggered(); + /*if( PendingInterruptFlag&PENDING_INTERRUPT_FLAG_TRACE ) + M68000_TraceModeTriggered();*/ if( PendingInterruptFlag&PENDING_INTERRUPT_FLAG_MFP ) MFP_CheckPendingInterrupts(); if( PendingInterruptCount<=0 && PendingInterruptFunction )