summaryrefslogtreecommitdiff
path: root/image/ico.c
diff options
context:
space:
mode:
Diffstat (limited to 'image/ico.c')
-rw-r--r--image/ico.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/ico.c b/image/ico.c
index fa82c1619..bf2647710 100644
--- a/image/ico.c
+++ b/image/ico.c
@@ -101,7 +101,7 @@ bool nsico_redraw(struct content *c, int x, int y,
bmp_decode(bmp);
c->bitmap = bmp->bitmap;
return plot.bitmap(x, y, width, height, c->bitmap,
- background_colour);
+ background_colour, c);
}
@@ -115,7 +115,7 @@ bool nsico_redraw_tiled(struct content *c, int x, int y,
bmp_decode(bmp);
c->bitmap = bmp->bitmap;
return plot.bitmap_tile(x, y, width, height, c->bitmap,
- background_colour, repeat_x, repeat_y);
+ background_colour, repeat_x, repeat_y, c);
}