mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Style nits
This commit is contained in:
parent
94735f9034
commit
a38675a562
@ -2579,7 +2579,8 @@ static int action_ok_video_resolution(const char *path,
|
||||
strlcpy(msg, "Applying: DEFAULT", sizeof(msg));
|
||||
else
|
||||
#endif
|
||||
snprintf(msg, sizeof(msg),"Applying: %dx%d\n START to reset",
|
||||
snprintf(msg, sizeof(msg),
|
||||
"Applying: %dx%d\n START to reset",
|
||||
width, height);
|
||||
runloop_msg_queue_push(msg, 1, 100, true);
|
||||
}
|
||||
|
@ -668,12 +668,14 @@ static int menu_displaylist_parse_system_info(menu_displaylist_info_t *info)
|
||||
#endif
|
||||
|
||||
retroarch_get_capabilities(RARCH_CAPABILITIES_COMPILER, tmp, sizeof(tmp));
|
||||
menu_entries_add_enum(info->list, tmp, "", MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0);
|
||||
menu_entries_add_enum(info->list, tmp, "",
|
||||
MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0);
|
||||
|
||||
#ifdef ANDROID
|
||||
bool perms = test_permissions(internal_storage_path);
|
||||
|
||||
snprintf(tmp, sizeof(tmp), "%s: %s", msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INTERNAL_STORAGE_STATUS),
|
||||
snprintf(tmp, sizeof(tmp), "%s: %s",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INTERNAL_STORAGE_STATUS),
|
||||
perms ? "read-write" : "read-only");
|
||||
menu_entries_add_enum(info->list, tmp, "",
|
||||
MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user