mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 15:40:26 +00:00
edgelegend has to be enabled to appear
This commit is contained in:
parent
4fc18a4c36
commit
bf97d28fb2
12
rogueviz.cpp
12
rogueviz.cpp
@ -39,6 +39,7 @@ void init();
|
||||
|
||||
bool showlabels = false;
|
||||
bool specialmark = false;
|
||||
bool edge_legend = false;
|
||||
|
||||
bool rog3 = false;
|
||||
int vertex_shape = 1;
|
||||
@ -1381,14 +1382,16 @@ vector<cell*> named;
|
||||
bool rogueviz_hud() {
|
||||
if(!rogueviz::on) return false;
|
||||
if(cmode & sm::DRAW) return false;
|
||||
if(legend.empty() && isize(edgetypes) < 2) return true;
|
||||
|
||||
initquickqueue();
|
||||
int qet = isize(edgetypes);
|
||||
if(qet == 1) qet = 0;
|
||||
if(qet == 1 || !edge_legend) qet = 0;
|
||||
|
||||
int legit = qet + isize(legend);
|
||||
|
||||
if(legit == 0) return true;
|
||||
|
||||
initquickqueue();
|
||||
|
||||
int rad = vid.radius/10;
|
||||
ld x = vid.xres - rad;
|
||||
|
||||
@ -1748,6 +1751,9 @@ int readArgs() {
|
||||
else if(argis("-nolegend")) {
|
||||
legend.clear();
|
||||
}
|
||||
else if(argis("-edgelegend")) {
|
||||
edge_legend = true;
|
||||
}
|
||||
else if(argis("-rvshape")) {
|
||||
shift(); vertex_shape = argi() & 3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user