mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-14 14:28:47 +00:00
Style nits ...
This commit is contained in:
parent
e65261ce0a
commit
f54898350b
@ -76,17 +76,14 @@ static void core_info_list_resolve_all_firmware(core_info_list_t *core_info_list
|
||||
for (c = 0; c < count; c++)
|
||||
{
|
||||
char path_key[64], desc_key[64], opt_key[64];
|
||||
|
||||
|
||||
|
||||
snprintf(path_key, sizeof(path_key), "firmware%u_path", c);
|
||||
snprintf(desc_key, sizeof(desc_key), "firmware%u_desc", c);
|
||||
snprintf(opt_key, sizeof(opt_key), "firmware%u_opt", c);
|
||||
snprintf(opt_key, sizeof(opt_key), "firmware%u_opt", c);
|
||||
|
||||
config_get_string(info->data, path_key, &info->firmware[c].path);
|
||||
config_get_string(info->data, desc_key, &info->firmware[c].desc);
|
||||
config_get_bool(info->data, opt_key , &info->firmware[c].optional);
|
||||
|
||||
|
||||
config_get_bool(info->data, opt_key , &info->firmware[c].optional);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1955,14 +1955,14 @@ void menu_populate_entries(void *data, unsigned menu_type)
|
||||
{
|
||||
if (rgui->core_info_current.firmware[i].desc)
|
||||
{
|
||||
snprintf(tmp, sizeof(tmp), " name: %s",
|
||||
rgui->core_info_current.firmware[i].desc ? rgui->core_info_current.firmware[i].desc : "");
|
||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||
|
||||
snprintf(tmp, sizeof(tmp), " status: %s, %s",
|
||||
rgui->core_info_current.firmware[i].missing ? "missing" : "present",
|
||||
rgui->core_info_current.firmware[i].optional ? "optional" : "required");
|
||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||
snprintf(tmp, sizeof(tmp), " name: %s",
|
||||
rgui->core_info_current.firmware[i].desc ? rgui->core_info_current.firmware[i].desc : "");
|
||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||
|
||||
snprintf(tmp, sizeof(tmp), " status: %s, %s",
|
||||
rgui->core_info_current.firmware[i].missing ? "missing" : "present",
|
||||
rgui->core_info_current.firmware[i].optional ? "optional" : "required");
|
||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user