settings: Fix a condition typo in setting_is_of_general_type
This commit is contained in:
parent
f2d481f421
commit
0c7046305b
|
@ -6634,7 +6634,7 @@ bool setting_is_of_general_type(rarch_setting_t *setting)
|
|||
{
|
||||
if (
|
||||
setting &&
|
||||
(setting->type < ST_ACTION) &&
|
||||
(setting->type > ST_ACTION) &&
|
||||
(setting->type < ST_GROUP)
|
||||
)
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue