diff options
| author | Michael M <mchtly@gmail.com> | 2017-10-21 12:35:58 -0700 |
|---|---|---|
| committer | Michael M <mchtly@gmail.com> | 2017-10-21 16:28:04 -0700 |
| commit | d6985fc3e89a6d79a1476c6a0ed323c7b50791fe (patch) | |
| tree | 9db1d555b628bc30f183a1d4c528056970bc462d /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | 7bcdd1a46a2e0964c0ea155d840cff1dbf573916 (diff) | |
AudioCommon: rename ClearAudioBuffer(mute) to SetSoundStreamRunning(running)
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index 18aa75d1ae..5e494b5e95 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -159,10 +159,10 @@ void UpdateSoundStream() } } -void ClearAudioBuffer(bool mute) +void SetSoundStreamRunning(bool running) { if (g_sound_stream) - g_sound_stream->Clear(mute); + g_sound_stream->Clear(running); } void SendAIBuffer(const short* samples, unsigned int num_samples) |
