mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-16 15:39:54 +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 (
|
||||
setting &&
|
||||
(setting->type == ST_INT) &&
|
||||
(setting->type == ST_UINT) &&
|
||||
(setting->type == ST_FLOAT)
|
||||
((setting->type == ST_INT) ||
|
||||
(setting->type == ST_UINT) ||
|
||||
(setting->type == ST_FLOAT))
|
||||
)
|
||||
return true;
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user