Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of RA8875 by
Diff: TextDisplay.cpp
- Revision:
- 47:d96a09269f91
- Parent:
- 46:1321832f11d8
- Child:
- 61:8f3153bf0baa
--- a/TextDisplay.cpp Thu Mar 13 17:24:45 2014 +0000 +++ b/TextDisplay.cpp Thu Mar 13 22:56:32 2014 +0000 @@ -37,7 +37,7 @@ if(value == '\n') { _column = 0; _row++; - if(_row >= rows() ) { // #### hb. Fix missing 18th row issue. + if(_row >= rows()) { _row = 0; } } else { @@ -46,7 +46,7 @@ if(_column >= columns()) { _column = 0; _row++; - if(_row >= rows() ) { // #### hb. Fix missing 18th row issue. + if(_row >= rows()) { _row = 0; } }