mirror of
https://github.com/libretro/RetroArch
synced 2025-02-14 06:40:48 +00:00
Merge pull request #1174 from lakkatv/xmb
(Lakka) Remove Main Menu from the settings list
This commit is contained in:
commit
b884bc6e7f
@ -709,12 +709,11 @@ static bool lakka_init_settings(menu_handle_t *menu)
|
|||||||
category->items = (menu_item_t*)
|
category->items = (menu_item_t*)
|
||||||
calloc(category->num_items, sizeof(menu_item_t));
|
calloc(category->num_items, sizeof(menu_item_t));
|
||||||
|
|
||||||
for (j = 0; j <= 512; j++)
|
rarch_setting_t *group = (rarch_setting_t*)setting_data_find_setting(driver.menu->list_settings,
|
||||||
{
|
"Driver Options");
|
||||||
rarch_setting_t *group = (rarch_setting_t*)&setting_data[j];
|
|
||||||
|
|
||||||
if (!group)
|
for (; group->type != ST_NONE; group++)
|
||||||
continue;
|
{
|
||||||
if (group->type != ST_GROUP)
|
if (group->type != ST_GROUP)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user