Renombrado "section->subsection" por el mas apropiado "section->options"

This commit is contained in:
2024-09-09 13:38:56 +02:00
parent 1b2d1c5786
commit 922d146781
9 changed files with 27 additions and 25 deletions

View File

@@ -20,7 +20,7 @@ Intro::Intro(Screen *screen, Asset *asset, Input *input, Lang *lang, param_t *pa
// Inicializa variables
section->name = SECTION_PROG_INTRO;
section->subsection = 0;
section->options = 0;
ticks = 0;
ticksSpeed = 15;
scene = 1;
@@ -202,7 +202,7 @@ void Intro::checkInput()
{
JA_StopMusic();
section->name = SECTION_PROG_TITLE;
section->subsection = SUBSECTION_TITLE_1;
section->options = SECTION_OPTIONS_TITLE_1;
}
// Comprueba el input para el resto de objetos
@@ -355,7 +355,7 @@ void Intro::updateScenes()
texts[8]->setEnabled(false);
JA_StopMusic();
section->name = SECTION_PROG_TITLE;
section->subsection = SUBSECTION_TITLE_1;
section->options = SECTION_OPTIONS_TITLE_1;
}
break;