diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-08-01 03:07:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-01 03:07:29 +0200 |
| commit | a43f92156f5025595a67a4f9e40e9d990ed5b8a9 (patch) | |
| tree | 8e5769020874047cb832ca0e6ff1f44c486051eb /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | d078c6cb35219dd26fb83f16f7e00a545d49bd67 (diff) | |
| parent | 128d762aeabb1cc56d19cb603ff6ff0bb0f478ca (diff) | |
Merge pull request #4075 from lioncash/const
AudioCommon: const correctness
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index 41ebe4e04e..dd0b31b916 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -132,7 +132,7 @@ void ClearAudioBuffer(bool mute) g_sound_stream->Clear(mute); } -void SendAIBuffer(short* samples, unsigned int num_samples) +void SendAIBuffer(const short* samples, unsigned int num_samples) { if (!g_sound_stream) return; |
