mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Correct setting_is_of_numeric_type
This commit is contained in:
parent
dd45169063
commit
b22598c46c
@ -6645,9 +6645,9 @@ bool setting_is_of_numeric_type(rarch_setting_t *setting)
|
|||||||
{
|
{
|
||||||
if (
|
if (
|
||||||
setting &&
|
setting &&
|
||||||
(setting->type == ST_INT) &&
|
((setting->type == ST_INT) ||
|
||||||
(setting->type == ST_UINT) &&
|
(setting->type == ST_UINT) ||
|
||||||
(setting->type == ST_FLOAT)
|
(setting->type == ST_FLOAT))
|
||||||
)
|
)
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user