comment out unused code

This commit is contained in:
Jorj Bauer 2020-07-04 07:39:37 -04:00
parent fe237290a0
commit e1f2525c79
1 changed files with 3 additions and 3 deletions

View File

@ -300,10 +300,10 @@ void Fx80::addCharacter(uint8_t c)
c += 128;
}
uint8_t width = Fx80Font[c * 19];
/*uint8_t width =*/ Fx80Font[c * 19];
// FIXME: is 12 right for non-proportional mode?
if (!proportionalMode)
width = 12;
/* if (!proportionalMode)
width = 12;*/
// Each row for this char has two bytes of bits, left-to-right, high
// bit leftmost.