diff options
| author | 2019-03-07 10:47:59 -0500 | |
|---|---|---|
| committer | 2019-03-07 10:47:59 -0500 | |
| commit | d9e9e71aecb75699c33628e3036368db13767098 (patch) | |
| tree | 4c8fce0af97cc4b867b290231ef5b1ced9739cac /src | |
| parent | Merge pull request #2055 from bunnei/gpu-thread (diff) | |
| parent | service/audio/audout_u: Only actually stop the audio stream in StopAudioOut i... (diff) | |
| download | yuzu-d9e9e71aecb75699c33628e3036368db13767098.tar.gz yuzu-d9e9e71aecb75699c33628e3036368db13767098.tar.xz yuzu-d9e9e71aecb75699c33628e3036368db13767098.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/audout_u.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index bbe813490..21f5e64c7 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp | |||
| @@ -107,7 +107,9 @@ private: | |||
| 107 | void StopAudioOut(Kernel::HLERequestContext& ctx) { | 107 | void StopAudioOut(Kernel::HLERequestContext& ctx) { |
| 108 | LOG_DEBUG(Service_Audio, "called"); | 108 | LOG_DEBUG(Service_Audio, "called"); |
| 109 | 109 | ||
| 110 | audio_core.StopStream(stream); | 110 | if (stream->IsPlaying()) { |
| 111 | audio_core.StopStream(stream); | ||
| 112 | } | ||
| 111 | 113 | ||
| 112 | IPC::ResponseBuilder rb{ctx, 2}; | 114 | IPC::ResponseBuilder rb{ctx, 2}; |
| 113 | rb.Push(RESULT_SUCCESS); | 115 | rb.Push(RESULT_SUCCESS); |