mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-02-01 02:56:43 +01:00
emscripten: force fullscreen as off on init
This commit is contained in:
parent
116d190876
commit
dbd047c64e
1 changed files with 4 additions and 0 deletions
|
@ -113,6 +113,10 @@ SYMBOL_EXPORT struct Game* libsuperderpy_init(int argc, char** argv, const char*
|
|||
game->config.debug.livereload = strtol(GetConfigOptionDefault(game, "debug", "livereload", "1"), NULL, 10);
|
||||
game->config.debug.autopause = strtol(GetConfigOptionDefault(game, "debug", "autopause", "1"), NULL, 10);
|
||||
|
||||
#ifdef __EMSCRIPTEN__
|
||||
game->config.fullscreen = false;
|
||||
#endif
|
||||
|
||||
game->_priv.showconsole = game->config.debug.enabled;
|
||||
game->_priv.showtimeline = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue