mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
HLE DSP: Reset flags should take priority
This commit is contained in:
parent
6668ba3e37
commit
e26f58595e
1 changed files with 11 additions and 10 deletions
|
@ -253,6 +253,17 @@ namespace Audio {
|
|||
return;
|
||||
}
|
||||
|
||||
// The reset flags take priority, as you can reset a source and set it up to be played again at the same time
|
||||
if (config.resetFlag) {
|
||||
config.resetFlag = 0;
|
||||
source.reset();
|
||||
}
|
||||
|
||||
if (config.partialResetFlag) {
|
||||
config.partialResetFlag = 0;
|
||||
source.buffers = {};
|
||||
}
|
||||
|
||||
if (config.enableDirty) {
|
||||
config.enableDirty = 0;
|
||||
source.enabled = config.enable != 0;
|
||||
|
@ -272,16 +283,6 @@ namespace Audio {
|
|||
);
|
||||
}
|
||||
|
||||
if (config.resetFlag) {
|
||||
config.resetFlag = 0;
|
||||
source.reset();
|
||||
}
|
||||
|
||||
if (config.partialResetFlag) {
|
||||
config.partialResetFlag = 0;
|
||||
source.buffers = {};
|
||||
}
|
||||
|
||||
// TODO: Should we check bufferQueueDirty here too?
|
||||
if (config.formatDirty || config.embeddedBufferDirty) {
|
||||
source.sampleFormat = config.format;
|
||||
|
|
Loading…
Add table
Reference in a new issue