- added option to set custom end sequences: Use 'next = endsequence, "sequencename" in MAPINFO.

SVN r2929 (trunk)
This commit is contained in:
Christoph Oelckers 2010-10-10 06:21:23 +00:00
parent 45f3ef91d3
commit d969b141b8
1 changed files with 6 additions and 0 deletions

View File

@ -771,6 +771,12 @@ FName FMapInfoParser::CheckEndSequence()
{
seqname = "Inter_Titlescreen";
}
else if (sc.Compare("endsequence"))
{
ParseComma();
sc.MustGetString();
seqname = sc.String;
}
if (seqname != NULL)
{