mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 04:51:19 +00:00
- Fixed: The EndSequence structure was not fully initialized.
SVN r1019 (trunk)
This commit is contained in:
parent
acab6d9b30
commit
a4337e5b24
2 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
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
|
||||
were doing some things in their destructor that needed to be done in the
|
||||
Destroy method.
|
||||
|
|
|
@ -897,6 +897,7 @@ static void ParseMapInfoLower (FScanner &sc,
|
|||
EndSequence newSeq;
|
||||
bool useseq = false;
|
||||
|
||||
memset(&newSeq, 0, sizeof(newSeq));
|
||||
sc.MustGetString ();
|
||||
if (IsNum (sc.String))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue