From 921f9d260667300f52bf6186e0145bd34e4dc5ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Valor=20Mart=C3=ADnez?= Date: Sun, 28 May 2023 18:26:33 +0200 Subject: [PATCH] =?UTF-8?q?Input:=20Modificado=20el=20input=20por=20defect?= =?UTF-8?q?o=20para=20la=20acci=C3=B3n=20de=20cancelar=20con=20teclado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- units/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/units/input.cpp b/units/input.cpp index da12583..dea7c65 100644 --- a/units/input.cpp +++ b/units/input.cpp @@ -343,7 +343,7 @@ void Input::setDefaultBindings() bindKey(INPUT_BUTTON_2, SDL_SCANCODE_X); bindKey(INPUT_ACCEPT, SDL_SCANCODE_RETURN); - bindKey(INPUT_CANCEL, SDL_SCANCODE_ESCAPE); + bindKey(INPUT_CANCEL, SDL_SCANCODE_BACKSPACE); bindKey(INPUT_PAUSE, SDL_SCANCODE_H); bindKey(INPUT_EXIT, SDL_SCANCODE_ESCAPE);