mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
HLE DSP: Pop unused samples when loading new buffer
This commit is contained in:
parent
c7db6fe5dc
commit
45dd69d62a
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <iterator>
|
||||
#include <thread>
|
||||
#include <utility>
|
||||
|
||||
|
@ -370,6 +371,13 @@ namespace Audio {
|
|||
break;
|
||||
}
|
||||
|
||||
// We're skipping the first samplePosition samples, so remove them from the buffer so as not to consume them later
|
||||
if (source.samplePosition > 0) {
|
||||
auto start = source.currentSamples.begin();
|
||||
auto end = std::next(start, source.samplePosition);
|
||||
source.currentSamples.erase(start, end);
|
||||
}
|
||||
|
||||
// If the buffer is a looping buffer, re-push it
|
||||
if (buffer.looping) {
|
||||
source.pushBuffer(buffer);
|
||||
|
|
Loading…
Add table
Reference in a new issue