Rename menu_database_populate_query to menu_database_parse_query
This commit is contained in:
parent
fd8c202edd
commit
f7f538b60c
|
@ -1178,7 +1178,7 @@ static int menu_database_push_query(libretrodb_t *db,
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int menu_database_populate_query(file_list_t *list, const char *path,
|
static int menu_database_parse_query(file_list_t *list, const char *path,
|
||||||
const char *query)
|
const char *query)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_LIBRETRODB
|
#ifdef HAVE_LIBRETRODB
|
||||||
|
@ -1832,7 +1832,7 @@ static int menu_displaylist_parse(menu_displaylist_info_t *info,
|
||||||
*need_push = true;
|
*need_push = true;
|
||||||
break;
|
break;
|
||||||
case DISPLAYLIST_DATABASE_QUERY:
|
case DISPLAYLIST_DATABASE_QUERY:
|
||||||
ret = menu_database_populate_query(info->list, info->path, (info->path_c[0] == '\0') ? NULL : info->path_c);
|
ret = menu_database_parse_query(info->list, info->path, (info->path_c[0] == '\0') ? NULL : info->path_c);
|
||||||
strlcpy(info->path, info->path_b, sizeof(info->path));
|
strlcpy(info->path, info->path_b, sizeof(info->path));
|
||||||
|
|
||||||
*need_sort = true;
|
*need_sort = true;
|
||||||
|
|
Loading…
Reference in New Issue