fixed -Wundef warning due to HAVE_MMDEVICEAPI_H
parent
450c947949
commit
d7f1719777
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
#include "SDL_internal.h"
|
#include "SDL_internal.h"
|
||||||
|
|
||||||
#if (defined(__WIN32__) || defined(__GDK__)) && HAVE_MMDEVICEAPI_H
|
#if (defined(__WIN32__) || defined(__GDK__)) && defined(HAVE_MMDEVICEAPI_H)
|
||||||
|
|
||||||
#include "SDL_windows.h"
|
#include "SDL_windows.h"
|
||||||
#include "SDL_immdevice.h"
|
#include "SDL_immdevice.h"
|
||||||
|
@ -527,4 +527,4 @@ WaveFormatToSDLFormat(WAVEFORMATEX *waveformat)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* (defined(__WIN32__) || defined(__GDK__)) && HAVE_MMDEVICEAPI_H */
|
#endif /* (defined(__WIN32__) || defined(__GDK__)) && defined(HAVE_MMDEVICEAPI_H) */
|
||||||
|
|
Loading…
Reference in New Issue