1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

Fix #4898: Crash when title sequences are missing

This commit is contained in:
Ted John
2016-12-20 21:29:17 +00:00
committed by Gymnasiast
parent df2cd48c52
commit f2eb4c237d

View File

@@ -86,6 +86,12 @@ public:
sint32 entryPosition = _position;
FixViewLocation();
if (_sequence == nullptr)
{
SetViewLocation(75 * 32, 75 * 32);
return false;
}
// Check that position is valid
if (_position >= (sint32)_sequence->NumCommands)
{