We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 102bb14 commit 2853735Copy full SHA for 2853735
OLEDDisplay.h
@@ -308,8 +308,8 @@ class OLEDDisplay : public Print {
308
LASTCHAR = ch;
309
310
switch (last) { // conversion depnding on first UTF8-character
311
- case 0xC2: return (uint8_t) ch; break;
312
- case 0xC3: return (uint8_t) (ch | 0xC0); break;
+ case 0xC2: return (uint8_t) ch;
+ case 0xC3: return (uint8_t) (ch | 0xC0);
313
case 0x82: if (ch == 0xAC) return (uint8_t) 0x80; // special case Euro-symbol
314
}
315
0 commit comments