mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-25 12:46:03 +00:00
(Lakka) SD_FLAG_LAKKA_ADVANCED should only be honored by Lakka
This commit is contained in:
parent
18fd85de24
commit
aaff9d6d55
@ -1576,8 +1576,12 @@ static int menu_displaylist_parse_settings_internal_enum(
|
||||
if (!show_advanced_settings)
|
||||
{
|
||||
uint64_t flags = setting->flags;
|
||||
if ((flags & SD_FLAG_ADVANCED) || (flags & SD_FLAG_LAKKA_ADVANCED))
|
||||
if (flags & SD_FLAG_ADVANCED)
|
||||
goto end;
|
||||
#ifdef HAVE_LAKKA
|
||||
if (flags & SD_FLAG_LAKKA_ADVANCED)
|
||||
goto end;
|
||||
#endif
|
||||
}
|
||||
|
||||
for (;;)
|
||||
|
Loading…
x
Reference in New Issue
Block a user