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

@@ -171,7 +171,7 @@ void Game::init(int playerID)
gameCompleted = false;
gameCompletedCounter = 0;
section->name = SECTION_PROG_GAME;
section->subsection = SUBSECTION_GAME_PLAY_1P;
section->options = SECTION_OPTIONS_GAME_PLAY_1P;
currentPower = 0;
menaceCurrent = 0;
menaceThreshold = 0;
@@ -2484,9 +2484,9 @@ void Game::updateGameCompleted()
if (gameCompletedCounter == GAME_COMPLETED_END)
{
// section->subsection = SUBSECTION_GAME_GAMEOVER;
// section->options = SUBSECTION_GAME_GAMEOVER;
section->name = SECTION_PROG_TITLE;
section->subsection = SUBSECTION_TITLE_1;
section->options = SECTION_OPTIONS_TITLE_1;
}
}