(UWP) Buildfix

This commit is contained in:
twinaphex 2019-07-26 04:00:49 +02:00
parent 213fd3a2e8
commit 6b73acee4e
2 changed files with 3 additions and 1 deletions

View File

@ -441,6 +441,8 @@ static void *xa_list_new(void *u)
IXAudio2_Release(ixa2);
return sl;
#elif defined(__WINRT__)
return NULL;
#else
return mmdevice_list_new(u);
#endif

View File

@ -874,7 +874,7 @@ AUDIO
#include "../audio/drivers/nullaudio.c"
#if defined(HAVE_WASAPI) || (_WIN32_WINNT >= 0x0602)
#if defined(HAVE_WASAPI) || ((_WIN32_WINNT >= 0x0602) && !defined(__WINRT__))
#include "../audio/common/mmdevice_common.c"
#endif