diff --git a/source/game.cpp b/source/game.cpp index 03a42f2..61803cd 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -2532,14 +2532,17 @@ void Game::update() counter++; // Incrementa el contador de la demo - if (demo.counter < TOTAL_DEMO_DATA) + if (demo.enabled) { - demo.counter++; - } - else - { - section->name = SECTION_PROG_HI_SCORE_TABLE; - return; + if (demo.counter < TOTAL_DEMO_DATA) + { + demo.counter++; + } + else + { + section->name = SECTION_PROG_HI_SCORE_TABLE; + return; + } } #ifdef RECORDING