mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-01 01:03:11 +00:00
(Wii) don't list "boot.dol" in core selector
This commit is contained in:
parent
07ae3a873c
commit
fec81d2ee4
@ -113,7 +113,8 @@ static bool folder_cb(const char *directory, rgui_file_enum_cb_t file_cb,
|
||||
if (!S_ISDIR(st.st_mode) && !S_ISREG(st.st_mode))
|
||||
continue;
|
||||
|
||||
if (core_chooser && strstr(entry->d_name, ".dol") != entry->d_name + strlen(entry->d_name) - 4)
|
||||
if (core_chooser && (strstr(entry->d_name, ".dol") != entry->d_name + strlen(entry->d_name) - 4 ||
|
||||
strcasecmp(entry->d_name, "boot.dol") == 0))
|
||||
continue;
|
||||
|
||||
file_cb(ctx,
|
||||
|
Loading…
x
Reference in New Issue
Block a user