settings: Fix a condition typo in setting_is_of_general_type

This commit is contained in:
Lioncash 2015-05-07 18:21:13 -04:00
parent f2d481f421
commit 0c7046305b
1 changed files with 1 additions and 1 deletions

View File

@ -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;