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
merge-requests/60/head
bunnei 2019-03-07 10:47:59 +07:00 committed by GitHub
commit d9e9e71aec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

@ -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);