aboutsummaryrefslogtreecommitdiff
path: root/libgui/gfx.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-05 17:30:39 +0100
committerMarvin Borner2020-11-05 17:32:53 +0100
commit63e86f792167e6cc2e9600d00b184a3c83fe7498 (patch)
tree31e2d583be3ebf34782f6ec37f6c524657c40686 /libgui/gfx.c
parent916fca2161e76de67a5106b90baf00a57f2a0512 (diff)
Added warning flags and fixed them :)
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r--libgui/gfx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c
index 6e8b56a..304f935 100644
--- a/libgui/gfx.c
+++ b/libgui/gfx.c
@@ -28,7 +28,7 @@ static void load_font(enum font_type font_type)
if (fonts[font_type])
return;
- char *path = NULL;
+ const char *path = NULL;
switch (font_type) {
case FONT_8:
@@ -111,7 +111,7 @@ void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32
/* gfx_redraw(); */
}
-void gfx_load_image(struct context *ctx, char *path, int x, int y)
+void gfx_load_image(struct context *ctx, const char *path, int x, int y)
{
// TODO: Support x, y
struct bmp *bmp = bmp_load(path);
@@ -130,7 +130,7 @@ void gfx_load_image(struct context *ctx, char *path, int x, int y)
/* gfx_redraw(); */
}
-void gfx_load_wallpaper(struct context *ctx, char *path)
+void gfx_load_wallpaper(struct context *ctx, const char *path)
{
gfx_load_image(ctx, path, 0, 0);
}