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 /OpenAL32/Include/alMain.h | |
parent | f5195ee4f27f4c0bc5ea87dde6638a4a8ad97005 (diff) |
Return an ALC error enum from the OpenPlayback backend method
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 8265380e..155f9a03 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -270,7 +270,7 @@ enum DevProbe { }; typedef struct { - ALCboolean (*OpenPlayback)(ALCdevice*, const ALCchar*); + ALCenum (*OpenPlayback)(ALCdevice*, const ALCchar*); void (*ClosePlayback)(ALCdevice*); ALCboolean (*ResetPlayback)(ALCdevice*); void (*StopPlayback)(ALCdevice*); |