Ya se puede modificar el JailerID desde la pantalla de titulo, aunque hay que pulirlo un poco

This commit is contained in:
2023-10-03 23:18:56 +02:00
parent ee261f4509
commit a4fd00794d
7 changed files with 114 additions and 47 deletions

View File

@@ -153,6 +153,10 @@ void Title::checkEvents()
showCheevos = !showCheevos;
break;
case SDL_SCANCODE_Z:
runEnterID();
break;
default:
break;
}
@@ -389,4 +393,12 @@ void Title::moveCheevosList(int direction)
cheevosTextureView.y = bottom;
cheevosSprite->setSpriteClip(cheevosTextureView);
}
// Ejecuta la seccion en la que se solicita al usuario su ID online
void Title::runEnterID()
{
enterID = new EnterID(renderer, screen, asset, options, section);
enterID->run();
delete enterID;
}