mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 13:20:43 +00:00
Hide Resampler Quality setting
This commit is contained in:
parent
335230fc24
commit
ababce6461
@ -6555,9 +6555,16 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data)
|
|||||||
MENU_ENUM_LABEL_AUDIO_LATENCY,
|
MENU_ENUM_LABEL_AUDIO_LATENCY,
|
||||||
PARSE_ONLY_UINT, false) == 0)
|
PARSE_ONLY_UINT, false) == 0)
|
||||||
count++;
|
count++;
|
||||||
menu_displaylist_parse_settings_enum(menu, info,
|
{
|
||||||
MENU_ENUM_LABEL_AUDIO_RESAMPLER_QUALITY,
|
settings_t *settings = config_get_ptr();
|
||||||
PARSE_ONLY_UINT, false);
|
if (string_is_not_equal(settings->arrays.audio_resampler, "null"))
|
||||||
|
{
|
||||||
|
menu_displaylist_parse_settings_enum(menu, info,
|
||||||
|
MENU_ENUM_LABEL_AUDIO_RESAMPLER_QUALITY,
|
||||||
|
PARSE_ONLY_UINT, false);
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
menu_displaylist_parse_settings_enum(menu, info,
|
menu_displaylist_parse_settings_enum(menu, info,
|
||||||
MENU_ENUM_LABEL_AUDIO_RATE_CONTROL_DELTA,
|
MENU_ENUM_LABEL_AUDIO_RATE_CONTROL_DELTA,
|
||||||
PARSE_ONLY_FLOAT, false);
|
PARSE_ONLY_FLOAT, false);
|
||||||
|
@ -32,8 +32,6 @@
|
|||||||
|
|
||||||
#include <compat/strl.h>
|
#include <compat/strl.h>
|
||||||
|
|
||||||
#include <audio/audio_resampler.h>
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user