From f400ed0537b2425285f12721f0c03808834873ee Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 30 Oct 2017 23:57:16 +0100 Subject: [PATCH] fixed array[7] in blizzard.cpp --- blizzard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blizzard.cpp b/blizzard.cpp index 87a23f32..682792ba 100644 --- a/blizzard.cpp +++ b/blizzard.cpp @@ -35,7 +35,7 @@ struct blizzardcell { transmatrix *gm; char wmap; int inward, outward, ward; - int qty[7]; + int qty[MAX_EDGE]; vector inorder, outorder; int inid, outid; ~blizzardcell() { for(auto i: inorder) delete i; }