mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 07:12:36 +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)
|
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
|
- fixed: level.flags2 was not stored in savegames. Also bumped min. savegame
|
||||||
version and removed old compatibility handlings.
|
version and removed old compatibility handlings.
|
||||||
|
|
||||||
|
|
|
@ -865,7 +865,7 @@ CCMD(nextmap)
|
||||||
|
|
||||||
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
||||||
{
|
{
|
||||||
G_DeferedInitNew(next, false);
|
G_DeferedInitNew(next);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -886,7 +886,7 @@ CCMD(nextsecret)
|
||||||
|
|
||||||
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
if (next != NULL && strncmp(next, "enDSeQ", 6))
|
||||||
{
|
{
|
||||||
G_DeferedInitNew(next, false);
|
G_DeferedInitNew(next);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -2012,7 +2012,6 @@ static FArchive &operator<<(FArchive &arc, FSoundChan &chan)
|
||||||
<< chan.Rolloff.MinDistance
|
<< chan.Rolloff.MinDistance
|
||||||
<< chan.Rolloff.MaxDistance
|
<< chan.Rolloff.MaxDistance
|
||||||
<< chan.LimitRange;
|
<< chan.LimitRange;
|
||||||
}
|
|
||||||
|
|
||||||
if (arc.IsLoading())
|
if (arc.IsLoading())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue