From 988a0c0f20389018e7dbdc8fc5f06e8c878a2a5c Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Fri, 22 Jun 2018 16:21:03 -0400 Subject: [PATCH] wmusic: Fix volume display bug. The black pixels which were copied to the right part of the volume slider when the volume was decreased actually included a one-pixel-wide line of the bright red indicating max volume. --- wmusic/src/wmusic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmusic/src/wmusic.c b/wmusic/src/wmusic.c index 8f8b6d2..4300210 100644 --- a/wmusic/src/wmusic.c +++ b/wmusic/src/wmusic.c @@ -635,7 +635,7 @@ void DrawVolume(void) if (volume > 36) volume = 36; copyNumArea(61, 0, volume, 6, 7, 18); - copyNumArea(97, 0, 36-volume, 6, 7+volume, 18); + copyNumArea(98, 0, 36-volume, 6, 7+volume, 18); } void DrawKbps(int bps) -- 2.11.4.GIT