From ba0e6bcdea0a23919e443c1c1bf6e90566cae161 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 1 Mar 2018 18:17:04 +0100 Subject: [PATCH] Get rid of warning that is inaccurate --- gfx/video_shader_parse.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gfx/video_shader_parse.c b/gfx/video_shader_parse.c index 2d46646e1d..b6ad929589 100644 --- a/gfx/video_shader_parse.c +++ b/gfx/video_shader_parse.c @@ -1245,12 +1245,7 @@ enum rarch_shader_type video_shader_parse_type(const char *path, bool is_preset = false; if (!path) - { - RARCH_WARN("Rendering context is incompatible with shader type: %s\n", - path); return fallback; - } - return video_shader_get_type_from_ext(path_get_extension(path), &is_preset); }