Applied all mainline PCem commits;

Removed SCSI thread waiting (except after executing the READ SUBCHANNEL command, to alleviate the effects of READ SUBCHANNEL spam done by CD players).
This commit is contained in:
OBattler
2017-09-02 23:39:26 +02:00
parent c0d1e5b4b2
commit 4c3532f31e
19 changed files with 846 additions and 292 deletions

View File

@@ -95,7 +95,7 @@ void timer_update_outstanding(void)
if (*timers[c].enable && *timers[c].count < timer_latch)
timer_latch = *timers[c].count;
}
timer_count = timer_latch = (timer_latch + ((1 << TIMER_SHIFT) - 1)) >> TIMER_SHIFT;
timer_count = timer_latch = (timer_latch + ((1 << TIMER_SHIFT) - 1));
}