Fix -Wmisleading-indentation warning on Clang

This commit is contained in:
Arthur O'Dwyer 2022-07-05 13:14:27 -04:00
parent 3c3f2b2b21
commit 559301e69f
1 changed files with 3 additions and 4 deletions

View File

@ -533,10 +533,9 @@ void go_menu() {
else if(current.owner[i] != Free)
owned_by[current.owner[i]]++;
shstream ss;
println(ss, "black: ", stones[0], " stones, ", owned_by[0], " area, ", current.captures[1], " prisoners");
println(ss, "white: ", stones[1], " stones, ", owned_by[1], " area, ", current.captures[0], " prisoners");
shstream ss;
println(ss, "black: ", stones[0], " stones, ", owned_by[0], " area, ", current.captures[1], " prisoners");
println(ss, "white: ", stones[1], " stones, ", owned_by[1], " area, ", current.captures[0], " prisoners");
dialog::addSelItem("play black", its(stones[0]), 'b');
dialog::add_action([] { try_to_play(mouse_label(), 0); });