1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-01 13:00:57 +00:00

rv::anygraph:: fixed edge visibility

This commit is contained in:
Zeno Rogue 2018-09-27 21:52:37 +02:00
parent 2bdda23bc8
commit 3904b9d11e

View File

@ -373,7 +373,7 @@ namespace anygraph {
while(true) {
int i = readLabel(f), j = readLabel(f);
if(i == -1 || j == -1) break;
addedge(i, j, 0, subdiv, any);
addedge(i, j, 1, subdiv, any);
qlink++;
}
fclose(f);