diff options
author | Bert <ber.t@gmx.com> | 2011-01-19 18:03:32 +0100 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-01-19 18:03:32 +0100 |
commit | 6851d5c4e59640aedf3f23ff5ab6409d153c5ae3 (patch) | |
tree | 81f75e0cc15b9528bc1da6019d1827f442d1cc10 /image.c | |
parent | a7e30bb081ab0a27147f97b8851d7bb76c39c51b (diff) |
Removed im member from img struct
Diffstat (limited to 'image.c')
-rw-r--r-- | image.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -40,16 +40,18 @@ void imlib_destroy() { } void img_load(img_t *img, const char *filename) { + Imlib_Image *im; + if (!img || !filename) return; if (imlib_context_get_image()) imlib_free_image(); - if (!(img->im = imlib_load_image(filename))) + if (!(im = imlib_load_image(filename))) DIE("could not open image: %s", filename); - imlib_context_set_image(img->im); + imlib_context_set_image(im); img->w = imlib_image_get_width(); img->h = imlib_image_get_height(); |