Merge pull request #7815 from orbea/glui

materialui: Move 'Start Core' before 'Load Core'.
This commit is contained in:
Twinaphex 2018-12-25 03:14:08 +01:00 committed by GitHub
commit c9a0b8c42d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2057,6 +2057,12 @@ static int materialui_list_push(void *data, void *userdata,
menu_displaylist_setting(&entry);
}
if (system->load_no_content)
{
entry.enum_idx = MENU_ENUM_LABEL_START_CORE;
menu_displaylist_setting(&entry);
}
#ifndef HAVE_DYNAMIC
if (frontend_driver_has_fork())
#endif
@ -2068,12 +2074,6 @@ static int materialui_list_push(void *data, void *userdata,
}
}
if (system->load_no_content)
{
entry.enum_idx = MENU_ENUM_LABEL_START_CORE;
menu_displaylist_setting(&entry);
}
if (settings->bools.menu_show_load_content)
{
entry.enum_idx = MENU_ENUM_LABEL_LOAD_CONTENT_LIST;