mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 18:45:29 +00:00
Fix missing none backend initializer
This commit is contained in:
parent
ce60176e99
commit
a205359a08
|
@ -35,6 +35,8 @@ static const enum SoundIoBackend available_backends[] = {
|
|||
|
||||
typedef int (*backend_init_t)(struct SoundIoPrivate *);
|
||||
static backend_init_t backend_init_fns[] = {
|
||||
NULL, // None backend
|
||||
|
||||
#ifdef SOUNDIO_HAVE_JACK
|
||||
&soundio_jack_init,
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue