1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

fixed the 'dual grid' pattern

This commit is contained in:
Zeno Rogue 2019-11-14 20:59:58 +01:00
parent 9168abd1a7
commit ac8eebf179

View File

@ -2435,7 +2435,7 @@ EX namespace linepatterns {
case patDual:
forCellEx(c2, c) if(c2 > c) if(gmatrix.count(c2)) {
gridlinef(V, C0, gmatrix[c2]*C0, col, 2 + vid.linequality);
gridlinef(V, C0, gmatrix[c2], C0, col, 2 + vid.linequality);
}
break;