- Fixed: The EndSequence structure was not fully initialized.

SVN r1019 (trunk)
This commit is contained in:
Christoph Oelckers 2008-06-04 20:23:02 +00:00
parent acab6d9b30
commit a4337e5b24
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
June 4, 2008 (Changes by Graf Zahl) June 4, 2008 (Changes by Graf Zahl)
- Fixed: The EndSequence structure was not fully initialized.
- While doing the interpolation rewrite I noticed that DScroller and DPolyAction - While doing the interpolation rewrite I noticed that DScroller and DPolyAction
were doing some things in their destructor that needed to be done in the were doing some things in their destructor that needed to be done in the
Destroy method. Destroy method.

View file

@ -897,6 +897,7 @@ static void ParseMapInfoLower (FScanner &sc,
EndSequence newSeq; EndSequence newSeq;
bool useseq = false; bool useseq = false;
memset(&newSeq, 0, sizeof(newSeq));
sc.MustGetString (); sc.MustGetString ();
if (IsNum (sc.String)) if (IsNum (sc.String))
{ {