mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
should be !string_is_equal
This commit is contained in:
parent
0143b537a8
commit
6e969d0bc6
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ static int input_autoconfigure_joypad_try_from_conf(config_file_t *conf,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ( !string_is_empty(ident)
|
if ( !string_is_empty(ident)
|
||||||
&& string_is_equal(params->name, ident))
|
&& !string_is_equal(params->name, ident))
|
||||||
score += 1;
|
score += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue