SVN r44 (trunk)
This commit is contained in:
parent
4dd936e438
commit
07f35a7008
22 changed files with 423 additions and 119 deletions
|
|
@ -2290,7 +2290,7 @@ void G_AirControlChanged ()
|
|||
|
||||
void G_SerializeLevel (FArchive &arc, bool hubLoad)
|
||||
{
|
||||
int i;
|
||||
int i = level.totaltime;
|
||||
|
||||
arc << level.flags
|
||||
<< level.fadeto
|
||||
|
|
@ -2300,7 +2300,11 @@ void G_SerializeLevel (FArchive &arc, bool hubLoad)
|
|||
<< level.gravity
|
||||
<< level.aircontrol
|
||||
<< level.maptime
|
||||
<< level.totaltime;
|
||||
<< i;
|
||||
|
||||
// Hub transitions must keep the current total time
|
||||
if (!hubLoad)
|
||||
level.totaltime=i;
|
||||
|
||||
if (arc.IsStoring ())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue