From 9a6ca3297628a1da919703f7cc06c8f7cfbb30ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Sat, 25 Jan 2025 21:37:37 +0100 Subject: [PATCH] reduced space width to 1 to add up to 3 including character separators --- src/patrix/display/Display.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patrix/display/Display.h b/src/patrix/display/Display.h index c198a92..5d7ee58 100644 --- a/src/patrix/display/Display.h +++ b/src/patrix/display/Display.h @@ -197,7 +197,7 @@ public: } if (character == ' ') { - *x += 3; + *x += 1; return; }