summaryrefslogtreecommitdiffstats
path: root/lib/gui/png.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gui/png.c')
-rw-r--r--lib/gui/png.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/png.c b/lib/gui/png.c
index 2921ab3057..6bf997c29a 100644
--- a/lib/gui/png.c
+++ b/lib/gui/png.c
@@ -65,9 +65,9 @@ static int png_renderer(struct screen *sc, struct surface *s, struct image *img)
width = min(width, sc->s.width - startx);
height = min(height, sc->s.height - starty);
- buf = gui_screen_redering_buffer(sc);
+ buf = gui_screen_render_buffer(sc);
- rgba_blend(&sc->info, img, buf, height, width, startx, starty, true);
+ gu_rgba_blend(sc->info, img, buf, height, width, startx, starty, true);
return img->height;
}