From 5e450063fbe25926ae50d569c285db428055318a Mon Sep 17 00:00:00 2001 From: João Silva Date: Mon, 14 Aug 2017 06:03:05 +0100 Subject: Deleted several unused variables, code and files. --- source/cpuexec.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'source/cpuexec.h') diff --git a/source/cpuexec.h b/source/cpuexec.h index 9654d86..3a5075b 100644 --- a/source/cpuexec.h +++ b/source/cpuexec.h @@ -116,10 +116,8 @@ static INLINE void S9xReschedule(void) } if (PPU.HTimerEnabled && - (int32_t) PPU.HTimerPosition < max && - (int32_t) PPU.HTimerPosition > CPU.NextEvent && - (!PPU.VTimerEnabled || - (PPU.VTimerEnabled && CPU.V_Counter == PPU.IRQVBeamPos))) + (int32_t) PPU.HTimerPosition < max && (int32_t) PPU.HTimerPosition > CPU.NextEvent && + (!PPU.VTimerEnabled || (PPU.VTimerEnabled && CPU.V_Counter == PPU.IRQVBeamPos))) { which = (int32_t) PPU.HTimerPosition < Settings.HBlankStart ? HTIMER_BEFORE_EVENT : HTIMER_AFTER_EVENT; max = PPU.HTimerPosition; @@ -127,5 +125,4 @@ static INLINE void S9xReschedule(void) CPU.NextEvent = max; CPU.WhichEvent = which; } - #endif -- cgit v1.2.3