From 2b27021eef6165bba3eec0c7d7e4e02b65de6036 Mon Sep 17 00:00:00 2001 From: wutno Date: Tue, 22 Feb 2022 23:37:29 -0500 Subject: [PATCH] ui: Start in 1280x960 --- ui/xemu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/xemu.c b/ui/xemu.c index 980834ce3e..34f1df5651 100644 --- a/ui/xemu.c +++ b/ui/xemu.c @@ -843,7 +843,7 @@ static void sdl2_display_very_early_init(DisplayOptions *o) // Create main window m_window = SDL_CreateWindow( - title, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1024, 768, + title, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 960, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); if (m_window == NULL) { fprintf(stderr, "Failed to create main window\n");