config: Disable pad navigation by default

Pad navigation is currently crashing with the SDL handler, see #18362. Disable it until the issue is fixed.
This commit is contained in:
Ani 2026-03-16 01:19:40 +01:00
parent 297db8713f
commit 7221012593

View File

@ -315,7 +315,7 @@ namespace gui
const gui_save sc_shortcuts = gui_save(sc, "shortcuts", QVariantMap());
const gui_save nav_enabled = gui_save(navigation, "pad_input_enabled", true);
const gui_save nav_enabled = gui_save(navigation, "pad_input_enabled", false);
const gui_save nav_global = gui_save(navigation, "allow_global_pad_input", false);
}