mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-28 06:53:58 +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)
|
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.
|
||||||
|
|
|
@ -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))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue