From 6d84abec2e48b6b2ef44e7f2275859d520aee065 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 14 Nov 2016 19:50:50 +1000 Subject: [PATCH] Fix a copy/paste error. --- mini_al.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mini_al.h b/mini_al.h index c6fc2330..1ebc8789 100644 --- a/mini_al.h +++ b/mini_al.h @@ -4165,7 +4165,7 @@ mal_result mal_context_init(mal_backend backends[], mal_uint32 backendCount, mal } break; #endif #ifdef MAL_ENABLE_NULL - case mal_backend_dsound: + case mal_backend_null: { mal_result result = mal_context_init__null(pContext); if (result == MAL_SUCCESS) { @@ -4213,7 +4213,7 @@ mal_result mal_context_uninit(mal_context* pContext) } break; #endif #ifdef MAL_ENABLE_NULL - case mal_backend_dsound: + case mal_backend_null: { return mal_context_uninit__null(pContext); } break;