mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-25 21:41:03 +00:00
- fixed: nextmap and nextsecret CCMDs set skill to 0.
SVN r1449 (trunk)
This commit is contained in:
parent
2c65d5b8f5
commit
1f5cf23418
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
February 25, 2009 (Changes by Graf Zahl)
|
||||
- fixed: nextmap and nextsecret CCMDs set skill to 0.
|
||||
- fixed: level.flags2 was not stored in savegames. Also bumped min. savegame
|
||||
version and removed old compatibility handlings.
|
||||
|
||||
|
|
|
@ -865,7 +865,7 @@ CCMD(nextmap)
|
|||
|
||||
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
||||
{
|
||||
G_DeferedInitNew(next, false);
|
||||
G_DeferedInitNew(next);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -886,7 +886,7 @@ CCMD(nextsecret)
|
|||
|
||||
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
||||
{
|
||||
G_DeferedInitNew(next, false);
|
||||
G_DeferedInitNew(next);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -2012,7 +2012,6 @@ static FArchive &operator<<(FArchive &arc, FSoundChan &chan)
|
|||
<< chan.Rolloff.MinDistance
|
||||
<< chan.Rolloff.MaxDistance
|
||||
<< chan.LimitRange;
|
||||
}
|
||||
|
||||
if (arc.IsLoading())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue