wm: glendy

Download patch

ref: 0c01f247e31b2cc808392f32ae00691dedad9796
parent: 59c901b50e67d54a822fedbac2808d56b499f9ec
author: mkf <mkf@hp.lan>
date: Fri Apr 19 17:37:01 EDT 2024

cli: fix output display

i thought i fixed it a while ago...

--- a/cli.c
+++ b/cli.c
@@ -31,7 +31,7 @@
 		printf("\n");
 
 		/* show column number and have a zig-zag effect */
-		printf("%2d%s |", x, x % 2 ? "" : "| ");
+		printf("%2d%s |", x, x % 2 ? "  " : "");
 		// printf("%2d |", x);
 
 		for(y = 0; y < SzY; y++)