1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-10 22:36:02 +00:00

rogueviz:: removed vizid

This commit is contained in:
Zeno Rogue
2021-03-31 01:10:45 +02:00
parent f9edc44a8a
commit 9ed06c7fee
9 changed files with 10 additions and 30 deletions

View File

@@ -8,8 +8,6 @@ namespace rogueviz {
namespace tree {
int tree_id;
edgetype *tree_edge;
struct treevertex {
@@ -63,7 +61,7 @@ namespace tree {
void read(string fn) {
fname = fn;
init(&tree_id, RV_GRAPH | RV_COMPRESS_LABELS | RV_COLOR_TREE);
init(RV_GRAPH | RV_COMPRESS_LABELS | RV_COLOR_TREE);
tree_edge = add_edgetype("tree edge");
printf("Reading the tree of life...\n");
FILE *f = fopen(fname.c_str(), "rt");