From 4e2393f4d5108338632abcd15ba4f4122c0e9119 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 19 Mar 2026 11:21:38 +0100 Subject: [PATCH] fix: al acabar el segon ending, la transicio es a logo_to_title, no a logo_to_loading_screen --- source/game/scenes/ending2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/scenes/ending2.cpp b/source/game/scenes/ending2.cpp index 9f9d0d5..75d05ff 100644 --- a/source/game/scenes/ending2.cpp +++ b/source/game/scenes/ending2.cpp @@ -146,7 +146,7 @@ void Ending2::updateState(float delta_time) { case EndingState::FADING: if (state_time_ >= STATE_FADE_DURATION) { SceneManager::current = SceneManager::Scene::LOGO; - SceneManager::options = SceneManager::Options::LOGO_TO_LOADING_SCREEN; + SceneManager::options = SceneManager::Options::LOGO_TO_TITLE; } break;