From 6e29bc44857e932f7181876d2ed880cdf7eed258 Mon Sep 17 00:00:00 2001 From: lifning <> Date: Tue, 23 Apr 2024 02:03:50 -0700 Subject: [PATCH] resize --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 45af687..94e7e6c 100644 --- a/main.c +++ b/main.c @@ -195,7 +195,7 @@ int SDL_AppInit(int argc, char *argv[]) { return -1; } - window = SDL_CreateWindow("cgbwebcam", w, h, 0); + window = SDL_CreateWindow("cgbwebcam", w, h, SDL_WINDOW_RESIZABLE); if (!window) { SDL_Log("Couldn't create window: %s", SDL_GetError()); return -1;