[client] Add win:maximize to maximize on startup

This commit is contained in:
Jonathan (JJRcop) Rubenstein
2019-05-26 02:30:24 -04:00
committed by Geoffrey McRae
parent 9f33043d17
commit d07aa4b29e
5 changed files with 16 additions and 4 deletions

View File

@@ -1055,6 +1055,7 @@ int run()
(params.fullscreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0) |
(params.allowResize ? SDL_WINDOW_RESIZABLE : 0) |
(params.borderless ? SDL_WINDOW_BORDERLESS : 0) |
(params.maximize ? SDL_WINDOW_MAXIMIZED : 0) |
sdlFlags
)
);
@@ -1337,4 +1338,4 @@ int main(int argc, char * argv[])
config_free();
return ret;
}
}