From 3a3d9cd41e54771292d68b6e69f3ab0bbac88900 Mon Sep 17 00:00:00 2001 From: radius Date: Fri, 4 Aug 2017 01:37:16 -0500 Subject: [PATCH] if swap override is not specified it should be false --- tasks/task_autodetect.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/task_autodetect.c b/tasks/task_autodetect.c index e3da649000..b43bf8e87e 100644 --- a/tasks/task_autodetect.c +++ b/tasks/task_autodetect.c @@ -189,6 +189,8 @@ static void input_autoconfigure_joypad_add(config_file_t *conf, { if (config_get_bool(conf, "input_swap_override", &tmp)) input_autoconfigure_swap_override = tmp; + else + input_autoconfigure_swap_override = false; } if (!block_osd_spam)