FIX: faltaba pasar el puntero de seccion a la sección de las instrucciones

This commit is contained in:
2023-09-24 08:28:02 +02:00
parent 9513a6c57e
commit 6f1eee21b9
3 changed files with 4 additions and 3 deletions

View File

@@ -980,7 +980,7 @@ void Title::run()
// Ejecuta la parte donde se muestran las instrucciones
void Title::runInstructions(mode_e mode)
{
instructions = new Instructions(renderer, screen, asset, input, lang);
instructions = new Instructions(renderer, screen, asset, input, lang, section);
instructions->run(mode);
delete instructions;
}