Skip to content

Commit 92b668d

Browse files
zoltanvbLibretroAdmin
authored andcommitted
Remove early return to allow merge of multiple entries (such as in NES db)
1 parent 88f74ed commit 92b668d

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

menu/menu_explore.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -789,12 +789,7 @@ explore_state_t *menu_explore_build_list(const char *directory_playlist,
789789
RBUF_CLEAR(split_buf);
790790
}
791791

792-
/* if all entries have found connections, we can leave early */
793-
if (--rdb->count == 0)
794-
{
795-
rmsgpack_dom_value_free(&item);
796-
break;
797-
}
792+
/* Do not leave early, even if all items have been found - merge all hits */
798793
}
799794

800795
libretrodb_cursor_close(cur);

0 commit comments

Comments
 (0)