From ccc40e8d15ebc168fb83c0cff5bc9d12a8a4f270 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Mon, 3 Aug 2026 23:42:47 +0200 Subject: [PATCH] Disabled display resizability. --- src/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.c b/src/display.c index 245423c..d59f092 100644 --- a/src/display.c +++ b/src/display.c @@ -22,7 +22,7 @@ inline int display_init(void) return EXIT_FAILURE; } - window = SDL_CreateWindow("2D_Engine", DISPLAY_WIDTH * RENDER_SCALE, DISPLAY_HEIGHT * RENDER_SCALE, SDL_WINDOW_RESIZABLE); + window = SDL_CreateWindow("2D_Engine", DISPLAY_WIDTH * RENDER_SCALE, DISPLAY_HEIGHT * RENDER_SCALE, 0); if(!window) { error_printf("Failed to create window : %s", SDL_GetError());