diff options
author | Chris Robinson <[email protected]> | 2011-08-24 14:24:48 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-24 14:24:48 -0700 |
commit | c696d4dbb23461066ed741a36a83da10b6ad17f5 (patch) | |
tree | d1b8f683f74d235828f52b2986f84dbee30ef458 /Alc/backends/oss.c | |
parent | f5195ee4f27f4c0bc5ea87dde6638a4a8ad97005 (diff) |
Return an ALC error enum from the OpenPlayback backend method
Diffstat (limited to 'Alc/backends/oss.c')
-rw-r--r-- | Alc/backends/oss.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/backends/oss.c b/Alc/backends/oss.c index 724b23c2..e361dff4 100644 --- a/Alc/backends/oss.c +++ b/Alc/backends/oss.c @@ -147,7 +147,7 @@ static ALuint OSSCaptureProc(ALvoid *ptr) return 0; } -static ALCboolean oss_open_playback(ALCdevice *device, const ALCchar *deviceName) +static ALCenum oss_open_playback(ALCdevice *device, const ALCchar *deviceName) { char driver[64]; oss_data *data; @@ -157,7 +157,7 @@ static ALCboolean oss_open_playback(ALCdevice *device, const ALCchar *deviceName if(!deviceName) deviceName = oss_device; else if(strcmp(deviceName, oss_device) != 0) - return ALC_FALSE; + return ALC_INVALID_VALUE; data = (oss_data*)calloc(1, sizeof(oss_data)); data->killNow = 0; @@ -167,12 +167,12 @@ static ALCboolean oss_open_playback(ALCdevice *device, const ALCchar *deviceName { free(data); ERR("Could not open %s: %s\n", driver, strerror(errno)); - return ALC_FALSE; + return ALC_INVALID_VALUE; } device->szDeviceName = strdup(deviceName); device->ExtraData = data; - return ALC_TRUE; + return ALC_NO_ERROR; } static void oss_close_playback(ALCdevice *device) |