Fix left side of board showing 9-2, instead of 8-1

master
Tait Hoyem 5 years ago
parent 5b7e16c081
commit 424a0fe7d0

@ -52,7 +52,7 @@ namespace Catch {
ss << "{ {" << std::endl;
ss << files << std::endl;
for (int i = 2; i < 10; ++i){
ss << 9-(i-2) << "|";
ss << 8-(i-2) << "|";
for (int j = 1; j < 9; ++j){
int index = (i*10)+j;
// This part loops through all positions in the list and checks if it contains the current index.

Loading…
Cancel
Save