Browse Source

🩹 Followup for lchar_t

Scott Lahteine 3 years ago
parent
commit
d956a6ba00
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/fontutils.cpp

+ 1
- 1
Marlin/src/lcd/fontutils.cpp View File

@@ -99,7 +99,7 @@ static inline bool utf8_is_start_byte_of_char(const uint8_t b) {
99 99
 
100 100
 /* This function gets the character at the pstart position, interpreting UTF8 multibyte sequences
101 101
    and returns the pointer to the next character */
102
-const uint8_t* get_utf8_value_cb(const uint8_t *pstart, read_byte_cb_t cb_read_byte, wchar_t *pval) {
102
+const uint8_t* get_utf8_value_cb(const uint8_t *pstart, read_byte_cb_t cb_read_byte, lchar_t *pval) {
103 103
   uint32_t val = 0;
104 104
   const uint8_t *p = pstart;
105 105
 

Loading…
Cancel
Save