1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 00:47:40 +00:00
This commit is contained in:
Zeno Rogue
2020-05-15 11:55:14 +02:00
30 changed files with 128 additions and 122 deletions

View File

@@ -383,7 +383,7 @@ void connection_debugger() {
string cap = its(k) + primes(last.second) + " -> " + its(get<1>(con)) + primes(get<0>(con)) + (get<2>(con) ? " (m) " : "");
dialog::addSelItem(cap, "go", '0' + k);
dialog::add_action([k, last, &sh, con] {
dialog::add_action([k, last, con] {
debug_polys.emplace_back(last.first * get_adj(debugged, last.second, k, -1), get<0>(con));
});
@@ -740,4 +740,4 @@ EX void choose() {
}
EX }
}
}