Added NaCl to SDL_GetPlatform()

This commit is contained in:
Sam Lantinga 2014-06-21 11:48:12 -07:00
parent 640e0415ae
commit 80e401ab08

View file

@ -421,6 +421,8 @@ SDL_GetPlatform()
return "MacOS Classic"; return "MacOS Classic";
#elif __MACOSX__ #elif __MACOSX__
return "Mac OS X"; return "Mac OS X";
#elif __NACL__
return "NaCl";
#elif __NETBSD__ #elif __NETBSD__
return "NetBSD"; return "NetBSD";
#elif __OPENBSD__ #elif __OPENBSD__