From e7e9e90b0d7ca6f926e64a0f1744fcc76a9b324b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 17 May 2016 16:15:37 +0200 Subject: [PATCH] (gfx/video_texture_image.c) Cleanup --- gfx/video_texture_image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/video_texture_image.c b/gfx/video_texture_image.c index 5ade854958..588be9ce30 100644 --- a/gfx/video_texture_image.c +++ b/gfx/video_texture_image.c @@ -116,7 +116,7 @@ bool video_texture_image_color_convert(unsigned r_shift, src += tmp_pitch; \ } -static bool video_texture_image_rpng_gx_convert_texture32( +static bool video_texture_image_internal_gx_convert_texture32( struct texture_image *image) { unsigned tmp_pitch, width2, i; @@ -196,7 +196,7 @@ static bool video_texture_image_load_png( a_shift, out_img); #ifdef GEKKO - if (!video_texture_image_rpng_gx_convert_texture32(out_img)) + if (!video_texture_image_internal_gx_convert_texture32(out_img)) { video_texture_image_free(out_img); goto end;