Removed redundant calls to get_char_width

This commit is contained in:
Stanislav N Mikhailov
2025-01-01 22:27:02 +03:00
parent 3cdfa81da8
commit d556f818a5
3 changed files with 54 additions and 9 deletions
+2 -1
View File
@@ -8,5 +8,6 @@ extern const uint16_t font_height;
extern const uint8_t font_data[];
void draw_string(uint16_t x, uint16_t y, const wchar_t *str);
void draw_char(uint16_t x, uint16_t y, wchar_t c);
void draw_char(uint16_t x, uint16_t y,uint8_t wdh, wchar_t c);
uint8_t get_char_width(wchar_t c);
#endif // FONT_DATA_H