This commit is contained in:
raa-eruanna 2016-10-05 21:36:23 -04:00
commit e592473f57
9 changed files with 16 additions and 6 deletions

View file

@ -1513,7 +1513,11 @@ void G_UnSnapshotLevel (bool hubLoad)
if (level.info->isValid())
{
FSerializer arc;
if (!arc.OpenReader(&level.info->Snapshot)) return;
if (!arc.OpenReader(&level.info->Snapshot))
{
I_Error("Failed to load savegame");
return;
}
G_SerializeLevel (arc, hubLoad);
level.FromSnapshot = true;