1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-26 15:13:19 +00:00

rulegen:: tests:: nicer MYSTERY_DIST display

This commit is contained in:
Zeno Rogue 2021-08-17 14:34:14 +02:00
parent 096364bb06
commit 72f0f9b28b

View File

@ -95,7 +95,7 @@ void view_debug() {
tcell *tc = m->counterpart[c->master];
string s;
auto label = (tc->code == MYSTERY ? "?" : its(tc->code)) + "/" + (tc->dist == MYSTERY ? "?" : its(tc->dist));
auto label = (tc->code == MYSTERY ? "?" : its(tc->code)) + "/" + (tc->dist == MYSTERY ? "?" : tc->dist == MYSTERY_DIST ? "*" : its(tc->dist));
color_t col = 0xFFFFFF + 0x512960 * tc->code;