Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions OLEDDisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ class OLEDDisplay : public Print {
LASTCHAR = ch;

switch (last) { // conversion depnding on first UTF8-character
case 0xC2: return (uint8_t) ch; break;
case 0xC3: return (uint8_t) (ch | 0xC0); break;
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
}

Expand Down