Style nits
This commit is contained in:
parent
94735f9034
commit
a38675a562
|
@ -2579,8 +2579,9 @@ static int action_ok_video_resolution(const char *path,
|
||||||
strlcpy(msg, "Applying: DEFAULT", sizeof(msg));
|
strlcpy(msg, "Applying: DEFAULT", sizeof(msg));
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
snprintf(msg, sizeof(msg),"Applying: %dx%d\n START to reset",
|
snprintf(msg, sizeof(msg),
|
||||||
width, height);
|
"Applying: %dx%d\n START to reset",
|
||||||
|
width, height);
|
||||||
runloop_msg_queue_push(msg, 1, 100, true);
|
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
|
#endif
|
||||||
|
|
||||||
retroarch_get_capabilities(RARCH_CAPABILITIES_COMPILER, tmp, sizeof(tmp));
|
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
|
#ifdef ANDROID
|
||||||
bool perms = test_permissions(internal_storage_path);
|
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");
|
perms ? "read-write" : "read-only");
|
||||||
menu_entries_add_enum(info->list, tmp, "",
|
menu_entries_add_enum(info->list, tmp, "",
|
||||||
MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0);
|
MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue