common: rename load_background_image to load_image

This commit is contained in:
Manuel Stoeckl 2023-11-23 08:01:48 -05:00 committed by Simon Ser
parent 39b9c0d6ba
commit 439122e887
3 changed files with 3 additions and 3 deletions

View file

@ -2,6 +2,6 @@
#define _SWAY_BACKGROUND_IMAGE_H
#include <cairo.h>
cairo_surface_t *load_background_image(const char *path);
cairo_surface_t *load_image(const char *path);
#endif