mirror of
https://github.com/libretro/RetroArch
synced 2025-03-22 16:20:58 +00:00
Merge pull request #1678 from lioncash/cond
settings: Fix a condition typo in setting_is_of_general_type
This commit is contained in:
commit
c018c80d5e
@ -6658,7 +6658,7 @@ bool setting_is_of_general_type(rarch_setting_t *setting)
|
|||||||
{
|
{
|
||||||
if (
|
if (
|
||||||
setting &&
|
setting &&
|
||||||
(setting->type < ST_ACTION) &&
|
(setting->type > ST_ACTION) &&
|
||||||
(setting->type < ST_GROUP)
|
(setting->type < ST_GROUP)
|
||||||
)
|
)
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user