Skip to content

Commit

Permalink
Merge branch 'master' into shader-decomp
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat committed Jul 28, 2024
2 parents d125180 + 908222f commit b3f35d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/audio/hle_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ namespace Audio {
Helpers::panic("Audio: invalid register in HLE frontend");
}

return dspState == DSPState::On;
return dspState != DSPState::On;
}

void HLE_DSP::writeProcessPipe(u32 channel, u32 size, u32 buffer) {
Expand Down Expand Up @@ -317,7 +317,7 @@ namespace Audio {

if (config.bufferQueueDirty) {
config.bufferQueueDirty = 0;
printf("Buffer queue dirty for voice %d\n", source.index);
// printf("Buffer queue dirty for voice %d\n", source.index);
}

config.dirtyRaw = 0;
Expand Down

0 comments on commit b3f35d8

Please sign in to comment.