From ee1dc70bd8fbb80778e31ca7f00db1c3dde27acb Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sun, 2 Nov 2025 18:02:18 +0100 Subject: [PATCH] =?UTF-8?q?mogudes=20les=20tecles=20H,=20B=20i=20M=20a=20t?= =?UTF-8?q?ecles=20de=20funci=C3=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/core/input/input.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/core/input/input.hpp b/source/core/input/input.hpp index b0e1deb2..0a36db22 100644 --- a/source/core/input/input.hpp +++ b/source/core/input/input.hpp @@ -65,9 +65,8 @@ class Input { // Inputs de control {Action::ACCEPT, KeyState(SDL_SCANCODE_RETURN)}, {Action::CANCEL, KeyState(SDL_SCANCODE_ESCAPE)}, - {Action::PAUSE, KeyState(SDL_SCANCODE_H)}, {Action::EXIT, KeyState(SDL_SCANCODE_ESCAPE)}, - + // Inputs de sistema {Action::WINDOW_DEC_ZOOM, KeyState(SDL_SCANCODE_F1)}, {Action::WINDOW_INC_ZOOM, KeyState(SDL_SCANCODE_F2)}, @@ -76,9 +75,10 @@ class Input { {Action::NEXT_PALETTE, KeyState(SDL_SCANCODE_F5)}, {Action::PREVIOUS_PALETTE, KeyState(SDL_SCANCODE_F6)}, {Action::TOGGLE_INTEGER_SCALE, KeyState(SDL_SCANCODE_F7)}, - {Action::SHOW_DEBUG_INFO, KeyState(SDL_SCANCODE_F12)}, - {Action::TOGGLE_MUSIC, KeyState(SDL_SCANCODE_M)}, - {Action::TOGGLE_BORDER, KeyState(SDL_SCANCODE_B)}} {} + {Action::TOGGLE_MUSIC, KeyState(SDL_SCANCODE_F8)}, + {Action::TOGGLE_BORDER, KeyState(SDL_SCANCODE_F9)}, + {Action::PAUSE, KeyState(SDL_SCANCODE_F10)}, + {Action::SHOW_DEBUG_INFO, KeyState(SDL_SCANCODE_F12)}} {} }; struct Gamepad {