mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
Merge 6bb3198006
into fec4428ebf
This commit is contained in:
commit
a3c5475732
1 changed files with 3 additions and 1 deletions
|
@ -85,7 +85,9 @@ namespace Audio {
|
|||
// Run 1 slice of DSP instructions and schedule the next audio frame
|
||||
void runAudioFrame(u64 eventTimestamp) override {
|
||||
runSlice();
|
||||
scheduler.addEvent(Scheduler::EventType::RunDSP, scheduler.currentTimestamp + Audio::lleSlice * 2);
|
||||
// How many cycles we were late
|
||||
const u64 cycleDrift = scheduler.currentTimestamp - eventTimestamp;
|
||||
scheduler.addEvent(Scheduler::EventType::RunDSP, scheduler.currentTimestamp + Audio::lleSlice * 2 - cycleDrift);
|
||||
}
|
||||
|
||||
void setAudioEnabled(bool enable) override;
|
||||
|
|
Loading…
Add table
Reference in a new issue