From f2b410f03344dbadaf6975d9f4737799245fb75a Mon Sep 17 00:00:00 2001 From: Turanszki Janos Date: Wed, 24 Feb 2021 18:40:12 +0100 Subject: [PATCH] editor linux: fix default window size #239 --- Editor/main_SDL2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Editor/main_SDL2.cpp b/Editor/main_SDL2.cpp index ea1bbedf6..0e95c96ee 100644 --- a/Editor/main_SDL2.cpp +++ b/Editor/main_SDL2.cpp @@ -56,8 +56,7 @@ int main(int argc, char *argv[]) throw sdl2::SDLError("Error creating SDL2 system"); } - //TODO read config.ini - int x = 1920, y = 0, w = 1080, h = 0; + int x = 0, y = 0, w = 1920, h = 1080; bool fullscreen = false; bool borderless = false; string voidStr = "";