diff options
author | Chris Robinson <[email protected]> | 2011-08-17 06:05:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-17 06:05:26 -0700 |
commit | 8148626ba36456a5aed2b3e75bbe32f9e7ab0249 (patch) | |
tree | b5de5d71473e9b4a52e1200fb05c3c6a79233f39 /Alc/winmm.c | |
parent | 14ffb8bd9b148185a42aa691c3c3d0c3a04dbc95 (diff) |
Allow the backend init functions to return failure
Diffstat (limited to 'Alc/winmm.c')
-rw-r--r-- | Alc/winmm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/winmm.c b/Alc/winmm.c index 08a626df..94c9b794 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -719,9 +719,10 @@ static const BackendFuncs WinMMFuncs = { WinMMAvailableSamples }; -void alcWinMMInit(BackendFuncs *FuncList) +ALCboolean alcWinMMInit(BackendFuncs *FuncList) { *FuncList = WinMMFuncs; + return ALC_TRUE; } void alcWinMMDeinit() |