Increase blockmap entry size for Sectors Mode

This commit is contained in:
spherallic 2024-05-30 20:53:41 +02:00
parent c30f266c5b
commit f167febd58

View file

@ -780,7 +780,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
{
RectangleF area = MapSet.CreateArea(General.Map.Map.Vertices);
area = MapSet.IncreaseArea(area, General.Map.Map.Things);
blockmap = new BlockMap<BlockEntry>(area);
blockmap = new BlockMap<BlockEntry>(area, 512);
blockmap.AddSectorsSet(General.Map.Map.Sectors);
blockmap.AddThingsSet(General.Map.Map.Things);