Aumentado el tiempo que se muestra la pantalla de carga.

Posibilidad de saltar la pantalla ya cargada en el menu de titulo
This commit is contained in:
2024-02-07 18:51:00 +01:00
parent 5c7f72253c
commit 1ee1ea560b

View File

@@ -200,10 +200,9 @@ void Title::checkInput()
else if (input->checkInput(input_accept, REPEAT_FALSE) || input->checkInput(input_pause, REPEAT_FALSE)) else if (input->checkInput(input_accept, REPEAT_FALSE) || input->checkInput(input_pause, REPEAT_FALSE))
{ {
if (!showCheevos) if (state = show_loading_screen)
{ {
// section->name = SECTION_GAME; state = fade_loading_screen;
// section->subsection = 0;
} }
} }
} }
@@ -281,7 +280,7 @@ void Title::update()
switch (state) switch (state)
{ {
case show_loading_screen: case show_loading_screen:
if (counter == 200) if (counter == 500)
{ {
counter = 0; counter = 0;
state = fade_loading_screen; state = fade_loading_screen;