Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank-Bemelman authored Aug 12, 2022
1 parent 254f432 commit 31bfe4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/Z20Jukeboxdisplay.ino
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ bool UpdateVinylRecord(int NewShow45RPM10mS)
if (Current45RPMShown != Actual45RPMShown)
{ Current45RPMShown = Actual45RPMShown;
strcpy(text, "Selection [ - ]");
if (deb_left_key)text[10] = KnobDecals[deb_left_key - 1];
if (deb_right_key)text[12] = KnobDecals[deb_right_key + 9];
if (deb_left_key)text[11] = KnobDecals[deb_left_key - 1];
if (deb_right_key)text[13] = KnobDecals[deb_right_key + 9];
TFT_line_print(5, text);
tw = MyDisplay[5].pixelwidth;
tft.fillRoundRect( ((240 - tw) / 2) - 15 , (5*40)+2, tw + 30, 32, 16, BackGroundColor);
Expand Down

0 comments on commit 31bfe4e

Please sign in to comment.