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/sndio.c | |
parent | f5195ee4f27f4c0bc5ea87dde6638a4a8ad97005 (diff) |
Return an ALC error enum from the OpenPlayback backend method
Diffstat (limited to 'Alc/backends/sndio.c')
-rw-r--r-- | Alc/backends/sndio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/backends/sndio.c b/Alc/backends/sndio.c index 5f9ad0cd..3a5e768f 100644 --- a/Alc/backends/sndio.c +++ b/Alc/backends/sndio.c @@ -165,14 +165,14 @@ static ALuint sndio_proc(ALvoid *ptr) -static ALCboolean sndio_open_playback(ALCdevice *device, const ALCchar *deviceName) +static ALCenum sndio_open_playback(ALCdevice *device, const ALCchar *deviceName) { sndio_data *data; if(!deviceName) deviceName = sndio_device; else if(strcmp(deviceName, sndio_device) != 0) - return ALC_FALSE; + return ALC_INVALID_VALUE; data = calloc(1, sizeof(*data)); data->killNow = 0; @@ -182,13 +182,13 @@ static ALCboolean sndio_open_playback(ALCdevice *device, const ALCchar *deviceNa { free(data); ERR("Could not open device\n"); - return ALC_FALSE; + return ALC_INVALID_VALUE; } device->szDeviceName = strdup(deviceName); device->ExtraData = data; - return ALC_TRUE; + return ALC_NO_ERROR; } static void sndio_close_playback(ALCdevice *device) |