Emscripten: Fixed SDL_GetPlatform() returning "Unknown" instead of "Emscripten".

This commit is contained in:
Philipp Wiesemann 2015-02-14 00:08:48 +01:00
parent d1932834e2
commit 2bb73d170c

View File

@ -405,6 +405,8 @@ SDL_GetPlatform()
return "BSDI";
#elif __DREAMCAST__
return "Dreamcast";
#elif __EMSCRIPTEN__
return "Emscripten";
#elif __FREEBSD__
return "FreeBSD";
#elif __HAIKU__