diff options
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index 066ab81..16b5683 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -102,7 +102,7 @@ void gfx_write_char(struct context *ctx, int x, int y, enum font_type font_type, /* gfx_redraw(); */ } -void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 c, char *text) +void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 c, const char *text) { struct font *font = gfx_resolve_font(font_type); u32 cnt = 0; |