summaryrefslogtreecommitdiff
path: root/src/paint.c
diff options
context:
space:
mode:
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++) {
+ }
}