forked from jaildesigner-jailgames/jaildoctors_dilemma
Ya se puede modificar el JailerID desde la pantalla de titulo, aunque hay que pulirlo un poco
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user