Fixed platform define condition for Windows phone
Fixes https://github.com/libsdl-org/SDL/issues/11876
This commit is contained in:
parent
0180ca541e
commit
0176a19aee
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@
|
|||
*/
|
||||
#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
|
||||
|
||||
#elif HAVE_WINAPIFAMILY_H && HAVE_WINAPIFAMILY_H
|
||||
#elif defined(HAVE_WINAPIFAMILY_H) && HAVE_WINAPIFAMILY_H
|
||||
#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
|
||||
#else
|
||||
#define SDL_WINAPI_FAMILY_PHONE 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue