1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 18:00:34 +00:00

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

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;