mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
Use Partial Addfile for G_LoadDemoExtraFiles as well
Still cope compared to the MP addfile codepath, but not the n^2 time cope of before.
This commit is contained in:
parent
b19004ae3b
commit
3cce3ec2ce
1 changed files with 4 additions and 1 deletions
|
@ -7014,10 +7014,13 @@ static void G_LoadDemoExtraFiles(UINT8 **pp)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
P_AddWadFile(filename);
|
P_PartialAddWadFile(filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (P_PartialAddGetStage() >= 0)
|
||||||
|
P_MultiSetupWadFiles(true); // in case any partial adds were done
|
||||||
}
|
}
|
||||||
|
|
||||||
static void G_SkipDemoExtraFiles(UINT8 **pp)
|
static void G_SkipDemoExtraFiles(UINT8 **pp)
|
||||||
|
|
Loading…
Reference in a new issue