fixed primes in connection_debugger

This commit is contained in:
Zeno Rogue 2020-05-01 19:35:50 +02:00
parent cef94da632
commit 2333537f11
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ void connection_debugger() {
int N = isize(sh.edges);
for(int k=0; k<N; k++) {
auto con = sh.connections[k];
string cap = its(k) + primes(last.second) + " -> " + its(get<0>(con)) + primes(get<1>(con)) + (get<2>(con) ? " (m) " : "");
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] {