mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
should be !string_is_equal
This commit is contained in:
parent
0143b537a8
commit
6e969d0bc6
@ -124,8 +124,8 @@ static int input_autoconfigure_joypad_try_from_conf(config_file_t *conf,
|
||||
score += 2;
|
||||
else
|
||||
{
|
||||
if ( !string_is_empty(ident)
|
||||
&& string_is_equal(params->name, ident))
|
||||
if ( !string_is_empty(ident)
|
||||
&& !string_is_equal(params->name, ident))
|
||||
score += 1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user