Fix #4898: Crash when title sequences are missing

This commit is contained in:
Ted John 2016-12-20 21:29:17 +00:00
parent 785a6ac850
commit 50a2e58b22
1 changed files with 6 additions and 0 deletions

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)
{