summaryrefslogtreecommitdiff
path: root/src/paint.c
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcsapce.com>2023-01-12 13:41:48 -0600
committerBrett Weiland <brett_weiland@bpcsapce.com>2023-01-12 13:41:48 -0600
commitb666668d0e6b67e4632e65486cae814ab5abbc39 (patch)
tree0cf0c2d689799c5e98d505e632248fdc5ed5a072 /src/paint.c
parent94304b11e7220f060dbc345de5fa1952d0465016 (diff)
updating for linkedin
Diffstat (limited to 'src/paint.c')
-rw-r--r--src/paint.c5
1 files changed, 4 insertions, 1 deletions
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++) {
+ }
}