Browse Source

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

Philipp Wiesemann 10 years ago
parent
commit
2bb73d170c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/SDL.c

+ 2 - 0
src/SDL.c

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