mirror of https://github.com/encounter/SDL.git
Emscripten: Fixed SDL_GetPlatform() returning "Unknown" instead of "Emscripten".
This commit is contained in:
parent
d1932834e2
commit
2bb73d170c
|
@ -405,6 +405,8 @@ SDL_GetPlatform()
|
||||||
return "BSDI";
|
return "BSDI";
|
||||||
#elif __DREAMCAST__
|
#elif __DREAMCAST__
|
||||||
return "Dreamcast";
|
return "Dreamcast";
|
||||||
|
#elif __EMSCRIPTEN__
|
||||||
|
return "Emscripten";
|
||||||
#elif __FREEBSD__
|
#elif __FREEBSD__
|
||||||
return "FreeBSD";
|
return "FreeBSD";
|
||||||
#elif __HAIKU__
|
#elif __HAIKU__
|
||||||
|
|
Loading…
Reference in New Issue