diff --git a/templates/includes/platform_settings/controls/3do.twig b/templates/includes/platform_settings/controls/3do.twig index ba065ee..ca30697 100644 --- a/templates/includes/platform_settings/controls/3do.twig +++ b/templates/includes/platform_settings/controls/3do.twig @@ -15,6 +15,10 @@ {% include control_template with input="keyboard" btn_id="r" btn_title="R" btn_value=controls.Keyboard.R %} {% include control_template with input="keyboard" btn_id="select" btn_title="X" btn_value=controls.Keyboard.Select %} {% include control_template with input="keyboard" btn_id="start" btn_title="P" btn_value=controls.Keyboard.Start %} + {% include control_template with input="keyboard" btn_id="up" btn_title="Up" btn_value=controls.Keyboard.Up %} + {% include control_template with input="keyboard" btn_id="down" btn_title="Down" btn_value=controls.Keyboard.Down %} + {% include control_template with input="keyboard" btn_id="left" btn_title="Left" btn_value=controls.Keyboard.Left %} + {% include control_template with input="keyboard" btn_id="right" btn_title="Right" btn_value=controls.Keyboard.Right %} {% include "common_keyboard_controls.twig" %} {% endblock %} @@ -26,5 +30,9 @@ {% include control_template with input="gamepad" btn_id="r" btn_title="R" btn_value=controls.Gamepad.R %} {% include control_template with input="gamepad" btn_id="select" btn_title="X" btn_value=controls.Gamepad.Select %} {% include control_template with input="gamepad" btn_id="start" btn_title="P" btn_value=controls.Gamepad.Start %} + {% include control_template with input="gamepad" btn_id="up" btn_title="Up" btn_value=controls.Gamepad.Up %} + {% include control_template with input="gamepad" btn_id="down" btn_title="Down" btn_value=controls.Gamepad.Down %} + {% include control_template with input="gamepad" btn_id="left" btn_title="Left" btn_value=controls.Gamepad.Left %} + {% include control_template with input="gamepad" btn_id="right" btn_title="Right" btn_value=controls.Gamepad.Right %} {% include "common_gamepad_controls.twig" %} {% endblock %}