From 5fa1c7040d0d86c99cb7efb210610ad8e973e546 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sun, 20 Dec 2020 17:15:51 +0100 Subject: Minor typo and comment clarification --- Meter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Meter.c') diff --git a/Meter.c b/Meter.c index 0130e754..3b3b438d 100644 --- a/Meter.c +++ b/Meter.c @@ -199,14 +199,14 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) { return; // The text in the bar is right aligned; - // Pad with maximal spaces and then calculate needed staring position offset + // Pad with maximal spaces and then calculate needed starting position offset RichString_begin(bar); RichString_appendChr(&bar, ' ', w); RichString_appendWide(&bar, 0, buffer); int startPos = RichString_sizeVal(bar) - w; if (startPos > w) { // Text is too large for bar - // Truncate too long bar meter text at a space character + // Truncate meter text at a space character for (int pos = 2 * w; pos > w; pos--) { if (RichString_getCharVal(bar, pos) == ' ') { while (pos > w && RichString_getCharVal(bar, pos - 1) == ' ') -- cgit v1.2.3