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) {