Merge pull request #566 from wheremyfoodat/hle-dsp

Fixing remaining HLE DSP hangs
This commit is contained in:
wheremyfoodat
2024-08-04 14:35:44 +00:00
committed by GitHub
7 changed files with 85 additions and 26 deletions

View File

@@ -167,7 +167,7 @@ void Emulator::pollScheduler() {
case Scheduler::EventType::UpdateTimers: kernel.pollTimers(); break;
case Scheduler::EventType::RunDSP: {
dsp->runAudioFrame();
dsp->runAudioFrame(time);
break;
}