Commit 6d84abec authored by David Reid's avatar David Reid

Fix a copy/paste error.

parent 4e05d6d8
...@@ -4165,7 +4165,7 @@ mal_result mal_context_init(mal_backend backends[], mal_uint32 backendCount, mal ...@@ -4165,7 +4165,7 @@ mal_result mal_context_init(mal_backend backends[], mal_uint32 backendCount, mal
} break; } break;
#endif #endif
#ifdef MAL_ENABLE_NULL #ifdef MAL_ENABLE_NULL
case mal_backend_dsound: case mal_backend_null:
{ {
mal_result result = mal_context_init__null(pContext); mal_result result = mal_context_init__null(pContext);
if (result == MAL_SUCCESS) { if (result == MAL_SUCCESS) {
...@@ -4213,7 +4213,7 @@ mal_result mal_context_uninit(mal_context* pContext) ...@@ -4213,7 +4213,7 @@ mal_result mal_context_uninit(mal_context* pContext)
} break; } break;
#endif #endif
#ifdef MAL_ENABLE_NULL #ifdef MAL_ENABLE_NULL
case mal_backend_dsound: case mal_backend_null:
{ {
return mal_context_uninit__null(pContext); return mal_context_uninit__null(pContext);
} break; } break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment