From daa76b3841809f3b8ee7e15e76581595752d9217 Mon Sep 17 00:00:00 2001 From: fschildt Date: Thu, 11 Dec 2025 03:06:40 +0100 Subject: window: not resizable and bigger --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 677b01f..a768040 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -79,7 +79,7 @@ CreateWindow() SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8); - SDL_Window* window = SDL_CreateWindow("fsarcade", 1024, 768, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIDDEN | SDL_WINDOW_HIGH_PIXEL_DENSITY); + SDL_Window* window = SDL_CreateWindow("fsarcade", 1280, 960, SDL_WINDOW_OPENGL | SDL_WINDOW_HIDDEN | SDL_WINDOW_HIGH_PIXEL_DENSITY); if (!window) { std::cerr << "Failed to create SDL_window: " << SDL_GetError() << '\n'; return nullptr; -- cgit v1.2.3