Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WinRT: made SDL_GetPlatform() return "WinRT" and not 'Unknown'
Thanks to Eric Wing for the heads-up on this!
  • Loading branch information
DavidLudwig committed Nov 15, 2014
1 parent e6cca5e commit 646025b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/SDL.c
Expand Up @@ -439,6 +439,8 @@ SDL_GetPlatform()
return "Solaris";
#elif __WIN32__
return "Windows";
#elif __WINRT__
return "WinRT";
#elif __IPHONEOS__
return "iOS";
#elif __PSP__
Expand Down

0 comments on commit 646025b

Please sign in to comment.