1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-18 13:20:57 +00:00

Get rid of ret variable

This commit is contained in:
twinaphex 2016-10-04 07:41:58 +02:00
parent f8d64b703e
commit 8b889084f6

@ -265,8 +265,7 @@ static bool input_autoconfigure_joypad_from_conf_internal(
{
config_file_t *conf = config_file_new_from_string(
input_builtin_autoconfs[i]);
bool ret = input_autoconfigure_joypad_from_conf(conf, params);
if (ret)
if (input_autoconfigure_joypad_from_conf(conf, params))
return true;
}