Default window size matches conf.lua;

This commit is contained in:
bjorn 2022-09-10 21:10:01 -07:00
parent 860651e80c
commit 7636a3c5e9
1 changed files with 2 additions and 2 deletions

View File

@ -124,11 +124,11 @@ static int l_lovrSystemOpenWindow(lua_State* L) {
luaL_checktype(L, 1, LUA_TTABLE);
lua_getfield(L, 1, "width");
window.width = luaL_optinteger(L, -1, 1080);
window.width = luaL_optinteger(L, -1, 720);
lua_pop(L, 1);
lua_getfield(L, 1, "height");
window.height = luaL_optinteger(L, -1, 600);
window.height = luaL_optinteger(L, -1, 800);
lua_pop(L, 1);
lua_getfield(L, 1, "fullscreen");