AudioCommon: rename ClearAudioBuffer(mute) to SetSoundStreamRunning(running)

This commit is contained in:
Michael M
2017-10-21 12:35:58 -07:00
parent 7bcdd1a46a
commit d6985fc3e8
3 changed files with 4 additions and 4 deletions

View File

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