From 018f1cfccb11906a32d3f38d22cd5c3346daba51 Mon Sep 17 00:00:00 2001 From: Thomas Battermann Date: Thu, 8 Mar 2012 22:09:36 +0100 Subject: [PATCH] Bugfix: Show correct Border-Elements on left (Unicode) --- output_nstd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output_nstd.c b/output_nstd.c index 4499fee..0c7d81f 100644 --- a/output_nstd.c +++ b/output_nstd.c @@ -51,7 +51,7 @@ void nstd_ausgabe_unicode(sudoku* s,int color) { printf("\n"); /* trenner für i != 8 */ if(i<8) { - printf("%s", (s->belegung[ i ][ j ] == s->belegung[i+1][ j ]) ? "┠───" : "┣━━━" ); + printf("%s", (s->belegung[ i ][ 0 ] == s->belegung[i+1][ 0 ]) ? "┠───" : "┣━━━" ); for(j = 0; j < 8; j++) { printf("%s", rahmen( (s->belegung[ i ][ j ] != s->belegung[ i ][j+1]) * 1