Merge pull request #1678 from lioncash/cond

settings: Fix a condition typo in setting_is_of_general_type
This commit is contained in:
Twinaphex 2015-05-08 15:01:34 +02:00
commit c018c80d5e

View File

@ -6658,7 +6658,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;