Mil millons de miniarreglos

Afegides traduccions faltants
This commit is contained in:
2024-09-26 22:13:20 +02:00
parent 69027f96e6
commit 05e3fddb8f
18 changed files with 173 additions and 28 deletions

View File

@@ -39,7 +39,7 @@ Screen::Screen(SDL_Window *window, SDL_Renderer *renderer, Asset *asset, Input *
fpsCounter = 0;
fps = 0;
#ifdef DEBUG
showInfo = true;
showInfo = false;
#else
showInfo = false;
#endif
@@ -354,12 +354,14 @@ void Screen::checkInput()
return;
}
#ifdef DEBUG
// Comprueba el teclado para mostrar la información de debug
if (input->checkInput(input_showinfo, INPUT_DO_NOT_ALLOW_REPEAT, INPUT_USE_KEYBOARD))
{
showInfo = !showInfo;
return;
}
#endif
for (int i = 0; i < input->getNumControllers(); ++i)
{