From 7d703e60ab7fc358366c10fd6ab6866fc631b3d6 Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 27 Feb 2026 16:08:08 +1000 Subject: [PATCH] Use N3DS nomenclature instead of 3DS in preparation for future work. --- miniaudio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index 6d5711c9..cd6ed8c6 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -4143,7 +4143,7 @@ typedef ma_uint16 wchar_t; #define MA_PROSPERO #endif #if defined(__3DS__) - #define MA_3DS + #define MA_N3DS #endif #if defined(__SWITCH__) || defined(__NX__) #define MA_SWITCH @@ -17916,7 +17916,7 @@ static ma_result ma_thread_create__posix(ma_thread* pThread, ma_thread_priority int result; pthread_attr_t* pAttr = NULL; -#if !defined(MA_EMSCRIPTEN) && !defined(MA_3DS) && !defined(MA_SWITCH) && !defined(MA_DREAMCAST) +#if !defined(MA_EMSCRIPTEN) && !defined(MA_N3DS) && !defined(MA_SWITCH) && !defined(MA_DREAMCAST) /* Try setting the thread priority. It's not critical if anything fails here. */ pthread_attr_t attr; if (pthread_attr_init(&attr) == 0) {