From 869314e386a5883366304e94c232ca21f0ba26d9 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Wed, 24 Jul 2024 14:45:35 +0200 Subject: [PATCH] Start playing title music only after title sequence is loaded (#22363) --- src/openrct2/scenes/title/TitleScene.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openrct2/scenes/title/TitleScene.cpp b/src/openrct2/scenes/title/TitleScene.cpp index a4365fe87b..dcdc31ded9 100644 --- a/src/openrct2/scenes/title/TitleScene.cpp +++ b/src/openrct2/scenes/title/TitleScene.cpp @@ -111,7 +111,6 @@ void TitleScene::Load() ContextOpenWindow(WindowClass::MainWindow); TitleInitialise(); - OpenRCT2::Audio::PlayTitleMusic(); if (_sequencePlayer != nullptr) { @@ -122,6 +121,8 @@ void TitleScene::Load() _sequencePlayer->Update(); } + Audio::PlayTitleMusic(); + CreateWindows(); if (gOpenRCT2ShowChangelog)