mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
And some more nits.
This commit is contained in:
parent
1030244e75
commit
5efedf134c
@ -1929,18 +1929,26 @@ void menu_populate_entries(void *data, unsigned menu_type)
|
|||||||
file_list_clear(rgui->selection_buf);
|
file_list_clear(rgui->selection_buf);
|
||||||
if (rgui->core_info_current.data)
|
if (rgui->core_info_current.data)
|
||||||
{
|
{
|
||||||
snprintf(tmp, sizeof(tmp), "Core name: %s", rgui->core_info_current.display_name ? rgui->core_info_current.display_name : "");
|
snprintf(tmp, sizeof(tmp), "Core name: %s",
|
||||||
|
rgui->core_info_current.display_name ? rgui->core_info_current.display_name : "");
|
||||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||||
snprintf(tmp, sizeof(tmp), "Authors: %s", rgui->core_info_current.authors ? rgui->core_info_current.authors : "");
|
|
||||||
|
snprintf(tmp, sizeof(tmp), "Authors: %s",
|
||||||
|
rgui->core_info_current.authors ? rgui->core_info_current.authors : "");
|
||||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||||
snprintf(tmp, sizeof(tmp), "Permissions: %s", rgui->core_info_current.permissions ? rgui->core_info_current.permissions : "");
|
|
||||||
|
snprintf(tmp, sizeof(tmp), "Permissions: %s",
|
||||||
|
rgui->core_info_current.permissions ? rgui->core_info_current.permissions : "");
|
||||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||||
snprintf(tmp, sizeof(tmp), "Supported extensions: %s", rgui->core_info_current.supported_extensions ? rgui->core_info_current.supported_extensions : "");
|
|
||||||
|
snprintf(tmp, sizeof(tmp), "Supported extensions: %s",
|
||||||
|
rgui->core_info_current.supported_extensions ? rgui->core_info_current.supported_extensions : "");
|
||||||
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
file_list_push(rgui->selection_buf, tmp, RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||||
|
|
||||||
if (rgui->core_info_current.firmware_count > 0)
|
if (rgui->core_info_current.firmware_count > 0)
|
||||||
{
|
{
|
||||||
core_info_list_update_missing_firmware(rgui->core_info, rgui->core_info_current.path, g_settings.system_directory);
|
core_info_list_update_missing_firmware(rgui->core_info, rgui->core_info_current.path,
|
||||||
|
g_settings.system_directory);
|
||||||
|
|
||||||
file_list_push(rgui->selection_buf, "Required firmware:", RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
file_list_push(rgui->selection_buf, "Required firmware:", RGUI_SETTINGS_CORE_INFO_NONE, 0);
|
||||||
for (i = 0; i < rgui->core_info_current.firmware_count; i++)
|
for (i = 0; i < rgui->core_info_current.firmware_count; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user