Add missing no_window initialization

Initialize the field no_window in "struct args"
This commit is contained in:
Romain Vimont 2019-03-02 22:42:28 +01:00
parent 36191b7eec
commit db6644f1f9

View file

@ -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;