- Get rid of some now irrelevant comments.

This commit is contained in:
Mitchell Richters 2021-12-09 17:36:18 +11:00 committed by Christoph Oelckers
parent 106ec53d1f
commit 14b8eda436
2 changed files with 0 additions and 2 deletions

View file

@ -20,7 +20,6 @@ struct Section
TArray<int> lines;
};
// giving 25% more may be a bit high as normally this should be small numbers only.
extern TArray<SectionLine> sectionLines;
extern TArray<Section> Sections;
extern TArray<TArray<int>> sectionspersector; // reverse map, mainly for the automap

View file

@ -72,7 +72,6 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, GameVarValue& w, G
{
case 0:
{
// pointless to handle now, fix when saving works again.
DDukeActor* a = arc.isWriting() ? w.actor() : nullptr;
arc("actor", a);
if (arc.isReading()) w = GameVarValue(a);