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.
2 parents d5cada2 + 2853735 commit 3cdedc5Copy full SHA for 3cdedc5
OLEDDisplay.h
@@ -311,8 +311,8 @@ class OLEDDisplay : public Print {
311
LASTCHAR = ch;
312
313
switch (last) { // conversion depnding on first UTF8-character
314
- case 0xC2: return (uint8_t) ch; break;
315
- case 0xC3: return (uint8_t) (ch | 0xC0); break;
+ case 0xC2: return (uint8_t) ch;
+ case 0xC3: return (uint8_t) (ch | 0xC0);
316
case 0x82: if (ch == 0xAC) return (uint8_t) 0x80; // special case Euro-symbol
317
}
318
0 commit comments