diff options
Diffstat (limited to 'Alc/loopback.c')
-rw-r--r-- | Alc/loopback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/loopback.c b/Alc/loopback.c index e8c5256e..86e53555 100644 --- a/Alc/loopback.c +++ b/Alc/loopback.c @@ -61,9 +61,10 @@ static const BackendFuncs loopback_funcs = { NULL }; -void alc_loopback_init(BackendFuncs *func_list) +ALCboolean alc_loopback_init(BackendFuncs *func_list) { *func_list = loopback_funcs; + return ALC_TRUE; } void alc_loopback_deinit(void) |