mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 12:39:54 +00:00
Merge pull request #11035 from jdgleaver/load-content-anim-favorites-fix
(Load Content Animation) Fix detection of 'favourites' playlist
This commit is contained in:
commit
357e382452
@ -412,10 +412,10 @@ bool gfx_widget_start_load_content_animation(void)
|
||||
sizeof(state->system_name));
|
||||
|
||||
/* Exclude history and favourites playlists */
|
||||
if (string_is_equal(state->system_name, "history") ||
|
||||
string_is_equal(state->system_name, "favorites") ||
|
||||
string_ends_with_size(state->system_name, "_history",
|
||||
strlen(state->system_name), STRLEN_CONST("_history")))
|
||||
if (string_ends_with_size(state->system_name, "_history",
|
||||
strlen(state->system_name), STRLEN_CONST("_history")) ||
|
||||
string_ends_with_size(state->system_name, "_favorites",
|
||||
strlen(state->system_name), STRLEN_CONST("_favorites")))
|
||||
state->system_name[0] = '\0';
|
||||
|
||||
/* Check whether a valid system name was found */
|
||||
|
Loading…
x
Reference in New Issue
Block a user