diff --git a/source/sections/title.cpp b/source/sections/title.cpp index 26878e1..35433a0 100644 --- a/source/sections/title.cpp +++ b/source/sections/title.cpp @@ -493,10 +493,12 @@ void Title::setState(State state) { break; case State::LOGO_FINISHED: Audio::get()->playMusic("title.ogg"); - tiled_bg_->changeSpeedTo(60.0F, 1.0F); + tiled_bg_->changeSpeedTo(60.0F, 0.5F); + blink_accumulator_ = 0.0f; // Resetea el timer para empezar el parpadeo desde el inicio break; case State::START_HAS_BEEN_PRESSED: Audio::get()->fadeOutMusic(MUSIC_FADE_OUT_LONG_MS); + blink_accumulator_ = 0.0f; // Resetea el timer para empezar el parpadeo desde el inicio break; } }