diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-12-11 03:06:40 +0100 |
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-12-11 03:06:40 +0100 |
| commit | daa76b3841809f3b8ee7e15e76581595752d9217 (patch) | |
| tree | 018ee3c4f2c602f8078ef3701b8dd93e1652796b /src/main.cpp | |
| parent | 6fffbbed46b903223f752faee7bbb870557665c9 (diff) | |
window: not resizable and bigger
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
