1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-01-27 12:48:52 +01:00

Type lcdCols and lcdRows to unsigned.

Since lcdCols is normally 128, it needs to be uint8_t, not int8_t.
This commit is contained in:
Neil McKechnie 2021-02-19 15:44:36 +00:00
parent 3327c043a1
commit cf5eb891d7

View File

@ -55,8 +55,8 @@ class LCDDisplay : public Print {
int8_t hotRow=0;
int8_t hotCol=0;
int8_t topRow=0;
int8_t lcdRows;
int8_t lcdCols;
uint8_t lcdRows;
uint8_t lcdCols;
int8_t slot=0;
int8_t rowFirst=-1;
int8_t rowNext=0;