diff options
author | Chris Robinson <[email protected]> | 2009-10-07 04:32:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-10-07 04:32:14 -0700 |
commit | d6e439244ae00a1750f0dc8b249f47efb4967a23 (patch) | |
tree | 1be001719e7c57ccab24b2645eaa73f431eb1760 /Alc/pulseaudio.c | |
parent | 5ff225fa1ba2827ef32884b5890bcfb35168527a (diff) |
Rename SetALCError for consistency
Diffstat (limited to 'Alc/pulseaudio.c')
-rw-r--r-- | Alc/pulseaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index bfea9947..d5dcf1df 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -656,7 +656,7 @@ static void pulse_capture_samples(ALCdevice *device, ALCvoid *buffer, ALCuint sa ALCuint available = RingBufferSize(data->ring); if(available < samples) - SetALCError(ALC_INVALID_VALUE); + alcSetError(ALC_INVALID_VALUE); else ReadRingBuffer(data->ring, buffer, samples); } //}}} |