From b1b264b6a1b689dea513f5b6fc02d37b8e38d269 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 16 Aug 2021 16:25:04 +0200 Subject: [PATCH] Fix legacy string --- demos/benchmarks/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/benchmarks/main.c b/demos/benchmarks/main.c index 772885fa..f010dd57 100644 --- a/demos/benchmarks/main.c +++ b/demos/benchmarks/main.c @@ -98,7 +98,7 @@ void benchmark(void) { height = gdispGetHeight(); font = gdispOpenFont("UI2 Double"); - gdispDrawStringBox(0, 0, width, 30, "ChibiOS/GFX - Benchmark", font, GFX_WHITE, gJustifyCenter); + gdispDrawStringBox(0, 0, width, 30, "uGFX - Benchmark", font, GFX_WHITE, gJustifyCenter); font = gdispOpenFont("UI2"); gdispDrawStringBox(0, height/2, width, 30, "5000 random rectangles", font, GFX_WHITE, gJustifyCenter);