From db6644f1f918604ce520da412de728d598cc0024 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sat, 2 Mar 2019 22:42:28 +0100 Subject: [PATCH] Add missing no_window initialization Initialize the field no_window in "struct args" --- app/src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main.c b/app/src/main.c index 92b1507a..d7816c76 100644 --- a/app/src/main.c +++ b/app/src/main.c @@ -395,6 +395,7 @@ main(int argc, char *argv[]) { .max_size = DEFAULT_MAX_SIZE, .bit_rate = DEFAULT_BIT_RATE, .always_on_top = SDL_FALSE, + .no_window = SDL_FALSE, }; if (!parse_args(&args, argc, argv)) { return 1;