From b666668d0e6b67e4632e65486cae814ab5abbc39 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Thu, 12 Jan 2023 13:41:48 -0600 Subject: updating for linkedin --- src/paint.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/paint.c') diff --git a/src/paint.c b/src/paint.c index a804d14..6a2b741 100644 --- a/src/paint.c +++ b/src/paint.c @@ -31,5 +31,8 @@ void draw_hline(int pos_y) { screen_buffer[((pos_y / 8) * 8) + on_pix] |= (1 << (pos_y % 8)); } -void draw_text(char *text, int x, int y, EEPROM_ADDR font) { +//also here +void draw_text(char *text, int x, int y, font_t font) { + for(int c = 0; text[c] == 0; c++) { + } } -- cgit v1.2.3