From ae507e5b0d3c9f8dd2d5cc226c4ac00c2e5a69f3 Mon Sep 17 00:00:00 2001 From: Jack Zeal Date: Mon, 23 Mar 2026 20:50:42 -0700 Subject: [PATCH] Better internal corners --- src/ssd/ssd-border.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/ssd/ssd-border.c b/src/ssd/ssd-border.c index 5083c0be..02987a10 100644 --- a/src/ssd/ssd-border.c +++ b/src/ssd/ssd-border.c @@ -104,9 +104,21 @@ printf("At 32\n"); } } tl_data[bw*bw -1] = col0; + tl_data[bw*bw -2] = col0; + tl_data[(bw-1)*bw -1] = col0; + tl_data[(bw-1)*bw -2] = col0; tr_data[(bw-1)*bw + (0)] = col0; + tr_data[(bw-1)*bw + (1)] = col0; + tr_data[(bw-2)*bw + (0)] = col0; + tr_data[(bw-2)*bw + (1)] = col0; bl_data[(0)*bw + (bw-1)] = col1; + bl_data[(0)*bw + (bw-2)] = col1; + bl_data[(1)*bw + (bw-1)] = col1; + bl_data[(1)*bw + (bw-2)] = col1; br_data[(0)*bw + (0)] = col1; + br_data[(0)*bw + (1)] = col1; + br_data[(1)*bw + (0)] = col1; + br_data[(1)*bw + (1)] = col1; /* bottom and right are identical */