Browse Source

Merge pull request #2206 from lioncash/audio-stop

service/audio/audout_u: Only actually stop the audio stream in StopAudioOut if the stream is playing
nce_cpp
bunnei 7 years ago
committed by GitHub
parent
commit
af2c9aae55
  1. 4
      src/core/hle/service/audio/audout_u.cpp

4
src/core/hle/service/audio/audout_u.cpp

@ -107,7 +107,9 @@ private:
void StopAudioOut(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_Audio, "called");
audio_core.StopStream(stream);
if (stream->IsPlaying()) {
audio_core.StopStream(stream);
}
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);

Loading…
Cancel
Save