Skip to content

Commit

Permalink
Merge pull request #563 from wheremyfoodat/wheremyfoodat-patch-2
Browse files Browse the repository at this point in the history
Fix HLE__DSP::RecvData
  • Loading branch information
wheremyfoodat authored Jul 28, 2024
2 parents d0f13de + e557bd2 commit 04e1898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit 04e1898

Please sign in to comment.