mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Hide Recording Settings if current recording driver is set
to NULL
This commit is contained in:
parent
7a47760c0b
commit
0d2b37e020
@ -7207,10 +7207,15 @@ rarch_setting_t *menu_setting_new(unsigned mask)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (mask & SL_FLAG_RECORDING_OPTIONS)
|
if (mask & SL_FLAG_RECORDING_OPTIONS)
|
||||||
|
{
|
||||||
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
|
if (strcmp(settings->record.driver, "null") != 0)
|
||||||
{
|
{
|
||||||
if (!setting_append_list_recording_options(&list, list_info, root))
|
if (!setting_append_list_recording_options(&list, list_info, root))
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (mask & SL_FLAG_FRAME_THROTTLE_OPTIONS)
|
if (mask & SL_FLAG_FRAME_THROTTLE_OPTIONS)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user