# HG changeset patch # User Michael Pavone # Date 1675638734 28800 # Node ID 4de40b13b55f19a6b9d3ce2eb067245e234b1fc0 # Parent c4980d89614bf46656b5fa5f8273f6b096255a00 Filter out "down" binds when content binds are disabled diff -r c4980d89614b -r 4de40b13b55f bindings.c --- a/bindings.c Sat Feb 04 23:31:11 2023 -0800 +++ b/bindings.c Sun Feb 05 15:12:14 2023 -0800 @@ -201,7 +201,7 @@ void handle_binding_down(keybinding * binding) { - if (!current_system) { + if (!current_system || !content_binds_enabled) { return; } if (binding->bind_type == BIND_GAMEPAD && current_system && current_system->gamepad_down)