From d7a9bd4ab2632a39850c3f762dd42faa290dc72e Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Fri, 29 May 2026 19:13:07 +0200 Subject: [PATCH] =?UTF-8?q?tweak(game=20over):=20en=20acabar=20la=20partid?= =?UTF-8?q?a=20es=20torna=20al=20logo=20en=20lloc=20del=20t=C3=ADtol?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/game/scenes/game_scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/scenes/game_scene.cpp b/source/game/scenes/game_scene.cpp index 173ec8e..1790d10 100644 --- a/source/game/scenes/game_scene.cpp +++ b/source/game/scenes/game_scene.cpp @@ -484,7 +484,7 @@ auto GameScene::stepGameOver(float delta_time) -> bool { game_over_timer_ -= delta_time; if (game_over_timer_ <= 0.0F) { Audio::get()->stopMusic(); - context_.setNextScene(SceneType::TITLE); + context_.setNextScene(SceneType::LOGO); return true; }