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/dsound.c | |
parent | 5ff225fa1ba2827ef32884b5890bcfb35168527a (diff) |
Rename SetALCError for consistency
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r-- | Alc/dsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index 91ac6499..111183f3 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -230,7 +230,7 @@ static ALCboolean DSoundOpenPlayback(ALCdevice *device, const ALCchar *deviceNam pData = calloc(1, sizeof(DSoundData)); if(!pData) { - SetALCError(ALC_OUT_OF_MEMORY); + alcSetError(ALC_OUT_OF_MEMORY); DSoundUnload(); return ALC_FALSE; } |