From 7cba4fe0fb121ab53a41d01ba4519998a7ddf047 Mon Sep 17 00:00:00 2001 From: Themaister Date: Fri, 13 Jun 2014 18:23:43 +0200 Subject: [PATCH] Remove useless log. --- gfx/image/image_rpng.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/gfx/image/image_rpng.c b/gfx/image/image_rpng.c index aa2d3afd47..5cd5f05e7c 100644 --- a/gfx/image/image_rpng.c +++ b/gfx/image/image_rpng.c @@ -117,9 +117,6 @@ static bool rpng_image_load_argb_shift(const char *path, struct texture_image *o else if (strstr(path, ".png")) { bool ret = rpng_load_image_argb(path, &out_img->pixels, &out_img->width, &out_img->height); - - RARCH_LOG("[RPNG]: Using RPNG loader.\n"); - if (!ret) return false;