From 7016e7f5da696b3322f7dc5679f842b37ba04a70 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 5 Jan 2020 01:45:22 -0500 Subject: [PATCH] summary: clean up table's unicode BDC --- src/demo/demo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/demo/demo.c b/src/demo/demo.c index a374e8490..a78b453d1 100644 --- a/src/demo/demo.c +++ b/src/demo/demo.c @@ -407,13 +407,13 @@ int main(int argc, char** argv){ } bool failed = false; printf("\n"); - printf(" │ │ total│frames│output(B)│ rendering│r%%│%6s│\n", "FPS"); - printf("══╪═╪═══════╪══════╪═════════╪══════════╪══╪══════╡\n"); + printf(" total│frames│output(B)│ rendering│r%%│%6s│\n", "FPS"); + printf("══╤═╤═══════╪══════╪═════════╪══════════╪══╪══════╡\n"); for(size_t i = 0 ; i < strlen(demos) ; ++i){ char totalbuf[BPREFIXSTRLEN + 1]; bprefix(results[i].stats.render_bytes, 1, totalbuf, 0); double avg = results[i].stats.render_ns / (double)results[i].stats.renders; - printf("%2zu│%c│%2lu.%03lus│%6lu│%*s│%8juµs│%2ld|%6.1f│%s\n", i, + printf("%2zu│%c│%2lu.%03lus│%6lu│%*s│%8juµs│%2ld│%6.1f│%s\n", i, results[i].selector, results[i].timens / GIG, (results[i].timens % GIG) / 1000000,