1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Remove double load of Title Sequence in TitleScreen.cpp

This commit is contained in:
mrmbernardi
2024-01-03 21:11:06 +01:00
committed by GitHub
parent 1d8dc111f1
commit f0a82e9ecd

View File

@@ -144,10 +144,9 @@ void TitleScreen::Load()
if (_sequencePlayer != nullptr)
{
_sequencePlayer->Begin(_currentSequence);
// Force the title sequence to load / update so we
// don't see a blank screen for a split second.
_loadedTitleSequenceId = SIZE_MAX;
TryLoadSequence();
_sequencePlayer->Update();
}