SVN r44 (trunk)

This commit is contained in:
Christoph Oelckers 2006-04-14 12:58:52 +00:00
commit 07f35a7008
22 changed files with 423 additions and 119 deletions

View file

@ -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 ())
{