(C89) Should be able to build now

@bparker06 to the rescue again.
This commit is contained in:
r5 2017-09-18 04:21:59 +01:00
parent da0abc3126
commit fdccf4a6b0

View File

@ -1080,7 +1080,8 @@ void video_shader_write_conf_cgp(config_file_t *conf,
enum rarch_shader_type video_shader_parse_type(const char *path,
enum rarch_shader_type fallback)
{
enum rarch_shader_type shader_type = RARCH_SHADER_NONE;
enum rarch_shader_type shader_type = RARCH_SHADER_NONE;
enum gfx_ctx_api api = video_context_driver_get_api();
if (!path)
return fallback;
@ -1105,8 +1106,6 @@ enum rarch_shader_type video_shader_parse_type(const char *path,
break;
}
enum gfx_ctx_api api = video_context_driver_get_api();
switch (api)
{
case GFX_CTX_OPENGL_API: