summaryrefslogtreecommitdiff
path: root/image/bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'image/bmp.c')
-rw-r--r--image/bmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/bmp.c b/image/bmp.c
index 74b03e77b..1025edd94 100644
--- a/image/bmp.c
+++ b/image/bmp.c
@@ -98,7 +98,7 @@ bool nsbmp_redraw(struct content *c, int x, int y,
if (!c->data.bmp.bmp->decoded)
bmp_decode(c->data.bmp.bmp);
c->bitmap = c->data.bmp.bmp->bitmap;
- return plot.bitmap(x, y, width, height, c->bitmap, background_colour);
+ return plot.bitmap(x, y, width, height, c->bitmap, background_colour, c);
}
@@ -112,7 +112,7 @@ bool nsbmp_redraw_tiled(struct content *c, int x, int y,
bmp_decode(c->data.bmp.bmp);
c->bitmap = c->data.bmp.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);
}