Skip to content

Commit

Permalink
Merge branch 'master' into lib-update
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern authored Nov 5, 2024
2 parents 3e442db + 8e2a3e5 commit 289d139
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/graphics/Screen.h
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,15 @@ class Screen : public concurrency::OSThread
SKIPREST = false;
return (uint8_t)ch;
}

case 0xC3: {
SKIPREST = false;
return (uint8_t)(ch | 0xC0);
}
}

// We want to strip out prefix chars for two-byte char formats
if (ch == 0xC2)
if (ch == 0xC2 || ch == 0xC3)
return (uint8_t)0;

#if defined(OLED_PL)
Expand Down

0 comments on commit 289d139

Please sign in to comment.