mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-09-15 15:46:40 +00:00
Merge pull request #2639 from sefinek/fix/typos-in-comments
fix: fix typos in source code comments
This commit is contained in:
@@ -1166,7 +1166,7 @@ char DefaultFontTableLookup(const uint8_t ch) {
|
||||
uint8_t last = LASTCHAR; // get last char
|
||||
LASTCHAR = ch;
|
||||
|
||||
switch (last) { // conversion depnding on first UTF8-character
|
||||
switch (last) { // conversion depending on first UTF8-character
|
||||
case 0xC2: return (uint8_t) ch;
|
||||
case 0xC3: return (uint8_t) (ch | 0xC0);
|
||||
case 0x82: if (ch == 0xAC) return (uint8_t) 0x80; // special case Euro-symbol
|
||||
|
||||
Reference in New Issue
Block a user