From f581a23f306a450068fa8821db0d8c816cec7a89 Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 1 Mar 2024 09:35:01 +1000 Subject: [PATCH] Fix a comment. --- examples/custom_backend.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/custom_backend.c b/examples/custom_backend.c index d4c4d68a..5f529f96 100644 --- a/examples/custom_backend.c +++ b/examples/custom_backend.c @@ -71,7 +71,10 @@ int main(int argc, char** argv) ma_context_config_sdl sdlContextConfig = ma_context_config_sdl_init(); sdlContextConfig._unused = 0; - /* You must include an entry for each backend you're using, even if the config is NULL. This is how miniaudio knows . */ + /* + You must include an entry for each backend you're using, even if the config is NULL. This is how miniaudio knows about + your custom backend. + */ ma_device_backend_spec pCustomContextConfigs[] = { { MA_DEVICE_BACKEND_VTABLE_SDL, &sdlContextConfig, NULL } };