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
commit 0cf5687e64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}