diff --git a/source/global_inputs.cpp b/source/global_inputs.cpp index fa6483b..d5290ae 100644 --- a/source/global_inputs.cpp +++ b/source/global_inputs.cpp @@ -261,6 +261,34 @@ namespace globalInputs ServiceMenu::get()->setSelectorDown(); return; } + + // Derecha + if (Input::get()->checkInput(InputAction::RIGHT, INPUT_ALLOW_REPEAT, InputDeviceToUse::CONTROLLER, i)) + { + ServiceMenu::get()->adjustOption(true); + return; + } + + // Izquierda + if (Input::get()->checkInput(InputAction::LEFT, INPUT_ALLOW_REPEAT, InputDeviceToUse::CONTROLLER, i)) + { + ServiceMenu::get()->adjustOption(false); + return; + } + + // Aceptar + if (Input::get()->checkInput(InputAction::FIRE_LEFT, INPUT_ALLOW_REPEAT, InputDeviceToUse::CONTROLLER, i)) + { + ServiceMenu::get()->selectOption(); + return; + } + + // Atras + if (Input::get()->checkInput(InputAction::FIRE_CENTER, INPUT_ALLOW_REPEAT, InputDeviceToUse::CONTROLLER, i)) + { + ServiceMenu::get()->moveBack(); + return; + } } } }