- Ya se puede usar el mando en todas las secciones del juego

- Definido flag para compilar para consola de juegos (GAME_CONSOLE)
This commit is contained in:
2023-02-10 20:08:06 +01:00
parent 76e928e21d
commit 3be9d4459c
19 changed files with 393 additions and 354 deletions

View File

@@ -128,7 +128,7 @@ void Logo::checkInput()
switchPalette();
}
else if (input->checkAnyInput())
else if (input->checkInput(input_pause, REPEAT_FALSE) || input->checkInput(input_accept, REPEAT_FALSE) || input->checkInput(input_jump, REPEAT_FALSE))
{
section->subsection = SUBSECTION_LOGO_TO_TITLE;
endSection();
@@ -269,7 +269,7 @@ void Logo::update()
checkEventHandler();
// Comprueba las entradas
void checkInput();
checkInput();
// Incrementa el contador
counter++;