remove comments

This commit is contained in:
Alexander Popov 2023-05-03 00:37:47 +03:00
parent 9fea7c6693
commit 79ae0e3802
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ void canvas_draw_utf8_str(Canvas* canvas, uint8_t x, uint8_t y, const char* str)
if(!str) return;
x += canvas->offset_x;
y += canvas->offset_y;
u8g2_DrawUTF8(&canvas->fb, x, y, str); //u8g2_DrawUTF8 u8g2_DrawStr
u8g2_DrawUTF8(&canvas->fb, x, y, str);
}