mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
nyx: Fix autoboot list for inis
This commit is contained in:
parent
565956482a
commit
6159d94e5d
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ static void _create_autoboot_window()
|
|||
LIST_INIT(ini_list_sections);
|
||||
if (ini_parse(&ini_list_sections, "bootloader/ini", true))
|
||||
{
|
||||
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_sections, link)
|
||||
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_list_sections, link)
|
||||
{
|
||||
if (!strcmp(ini_sec->name, "config") || (ini_sec->type != INI_CHOICE))
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue