1
0
forked from me/IronOS

Tiny patch for as mentioned in #30

This commit is contained in:
Ben V. Brown
2017-07-23 17:03:17 +10:00
parent cb8bc643c4
commit 2c5a83c134
3 changed files with 5 additions and 1 deletions

View File

@@ -427,6 +427,8 @@ void DrawUI() {
if (cellV < 33)
cellV = 33;
cellV -= 33; //Should leave us a number of 0-9
if (cellV > 9)
cellV = 9;
OLED_DrawExtendedChar(cellV + 1, 5);
} else {
OLED_DrawChar(' ', 5);