1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-15 06:17:38 +00:00

some arrays had number bounds while it should have been MAX_EDGE

This commit is contained in:
Zeno Rogue
2018-08-18 17:37:12 +02:00
parent a92cc33426
commit 1a6427ba32
3 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ hyperpoint adist(ld a, ld x) {
return spin(a) * xpush(x) * C0;
}
typedef pair<transmatrix, array<transmatrix, 8>> matrixitem;
typedef pair<transmatrix, array<transmatrix, MAX_EDGE>> matrixitem;
struct mesher {
eGeometry g;