1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 01:21:10 +00:00

(menu_entries.c) Small nits

This commit is contained in:
twinaphex 2014-10-12 07:03:58 +02:00
parent 8a2535f547
commit 38e671dd8f

@ -177,7 +177,6 @@ int menu_entries_push_list(menu_handle_t *menu,
unsigned menu_type) unsigned menu_type)
{ {
unsigned i; unsigned i;
char tmp[PATH_MAX];
size_t list_size = 0; size_t list_size = 0;
bool do_action = false; bool do_action = false;
bool is_history_list = !strcmp(label, "history_list"); bool is_history_list = !strcmp(label, "history_list");
@ -302,6 +301,8 @@ int menu_entries_push_list(menu_handle_t *menu,
if (info->data) if (info->data)
{ {
char tmp[PATH_MAX];
snprintf(tmp, sizeof(tmp), "Core name: %s", snprintf(tmp, sizeof(tmp), "Core name: %s",
info->display_name ? info->display_name : ""); info->display_name ? info->display_name : "");
file_list_push(list, tmp, "", file_list_push(list, tmp, "",
@ -732,13 +733,10 @@ int menu_parse_and_resolve(file_list_t *list, file_list_t *menu_list)
bool path_is_compressed = path_is_compressed_file(dir); bool path_is_compressed = path_is_compressed_file(dir);
if (path_is_compressed) if (path_is_compressed)
{
str_list = compressed_file_list_new(dir,exts); str_list = compressed_file_list_new(dir,exts);
}
else else
{
str_list = dir_list_new(dir, exts, true); str_list = dir_list_new(dir, exts, true);
}
if (!str_list) if (!str_list)
return -1; return -1;