Fork of David Smart's RA8875 library for the purpose of adding touch screen support
Fork of RA8875 by
Diff: TextDisplay.cpp
- Revision:
- 46:1321832f11d8
- Parent:
- 37:f19b7e7449dc
- Child:
- 47:d96a09269f91
--- a/TextDisplay.cpp Mon Mar 10 23:53:40 2014 +0000 +++ b/TextDisplay.cpp Thu Mar 13 17:24:45 2014 +0000 @@ -37,7 +37,7 @@ if(value == '\n') { _column = 0; _row++; - if(_row >= rows()) { + if(_row >= rows() ) { // #### hb. Fix missing 18th row issue. _row = 0; } } else { @@ -46,7 +46,7 @@ if(_column >= columns()) { _column = 0; _row++; - if(_row >= rows()) { + if(_row >= rows() ) { // #### hb. Fix missing 18th row issue. _row = 0; } }