fixed potential memory error in sightranges

This commit is contained in:
Zeno Rogue 2020-08-01 13:58:03 +02:00
parent 5514ce4849
commit 3c198a3672
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ EX int bounded_mine_quantity, bounded_mine_max;
EX const char *conffile = "hyperrogue.ini";
EX array<ld, gGUARD> sightranges;
/* extra space if more geometries are added */
EX array<ld, gGUARD+64> sightranges;
EX videopar vid;