diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index b1fb745b2d..ecefbd6cb3 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -2579,8 +2579,9 @@ 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", - width, height); + snprintf(msg, sizeof(msg), + "Applying: %dx%d\n START to reset", + width, height); runloop_msg_queue_push(msg, 1, 100, true); } diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 302aa96752..9451fad2c6 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -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);