mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Let's not concatenate things to unknown strings...
This commit is contained in:
parent
9ddad48744
commit
41c7d0315f
@ -82,7 +82,7 @@ int menu_hash_get_help_de_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"Benutzer lesbar (mode 600). Du kannst eine udev- \n"
|
||||
"Regel erstellen, die auch den Zugriff für andere \n"
|
||||
"Benutzer erlaubt.");
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
|
@ -97,7 +97,7 @@ int menu_hash_get_help_es_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO)
|
||||
);
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
@ -166,7 +166,7 @@ int menu_hash_get_help_es_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"accesibles fuera de la raíz.", sizeof(u)
|
||||
);
|
||||
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
@ -668,7 +668,7 @@ int menu_hash_get_help_es_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"monitor no funciona a 60Hz o similar, \n"
|
||||
"desactiva la sincronía vertical y deja \n"
|
||||
"esta opción en su valor predeterminado.", sizeof(u));
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
|
@ -86,7 +86,7 @@ int menu_hash_get_help_it_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO));
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
@ -149,7 +149,7 @@ int menu_hash_get_help_it_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"Come predefinito nella maggior parte delle distribuzioni, i nodi /dev/input \n"
|
||||
"sono only-root (modalità 600). Puoi settare una regola udev \n"
|
||||
"che fa queste accessibili ai non-root.", sizeof(u));
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
|
@ -649,7 +649,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO));
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
|
@ -515,7 +515,7 @@ int menu_hash_get_help_pt_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"evitar grande mudanças de pitch. Se o monitor \n"
|
||||
"não rodar a 60Hz, ou algo próximo a isso, desative\n"
|
||||
"o VSync, e deixe-o com valores padrão.");
|
||||
strlcat(s, u, len);
|
||||
strlcpy(s, u, len);
|
||||
strlcat(s, t, len);
|
||||
}
|
||||
break;
|
||||
|
@ -650,7 +650,7 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO));
|
||||
strlcat(s, t, len);
|
||||
strlcpy(s, t, len);
|
||||
strlcat(s, u, len);
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user