From a5a3cf1c87851e72673203c0f83cc262148afd04 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 17 Aug 2018 21:44:03 +0200 Subject: [PATCH] floorshape gpside bound is MAX_EDGE not 8 --- hyper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyper.h b/hyper.h index 2edb21e7..2932429d 100644 --- a/hyper.h +++ b/hyper.h @@ -3620,7 +3620,7 @@ void set_blizzard_frame(cell *c, int frameid); struct floorshape { bool is_plain; int shapeid, prio; - vector b, shadow, side[SIDEPARS], gpside[SIDEPARS][8]; + vector b, shadow, side[SIDEPARS], gpside[SIDEPARS][MAX_EDGE]; floorshape() { prio = PPR_FLOOR; } };