diff options
author | Marvin Borner | 2020-11-18 17:53:31 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-18 17:53:31 +0100 |
commit | a5a04ef3de6ad3f81d37a04fede23eb3b4b348b1 (patch) | |
tree | 555496762aaa15e810bf3038bd2d444d68931d65 /libgui/gfx.c | |
parent | 431c88102153b8b41a15a1105e291ecf161c030e (diff) |
Added browser and many networking things
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index 304f935..74f0138 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -105,8 +105,16 @@ void gfx_write_char(struct context *ctx, int x, int y, enum font_type font_type, void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 c, char *text) { struct font *font = gfx_resolve_font(font_type); + u32 cnt = 0; for (u32 i = 0; i < strlen(text); i++) { - write_char(ctx, x + i * font->width, y, font, c, text[i]); + // TODO: Should this be here? + if (text[i] == '\n') { + cnt = 0; + y += font->height; + } else { + write_char(ctx, x + cnt * font->width, y, font, c, text[i]); + } + cnt++; } /* gfx_redraw(); */ } |