Build fix

This commit is contained in:
jgranick
2016-12-07 16:30:23 -08:00
parent d0bc66bc65
commit c9a6bb0a68

View File

@@ -369,6 +369,8 @@ namespace lime {
bool SDLWindow::SetResizable (bool resizable) {
#ifndef EMSCRIPTEN
if (resizable) {
SDL_SetWindowResizable (sdlWindow, SDL_TRUE);
@@ -381,6 +383,11 @@ namespace lime {
return (SDL_GetWindowFlags (sdlWindow) & SDL_WINDOW_RESIZABLE);
#else
return resizable;
#endif
}