Use fill_string_concat

This commit is contained in:
twinaphex 2016-06-29 18:10:48 +02:00
parent 2bd3e94e5e
commit 1226c71b98

View File

@ -1945,11 +1945,10 @@ void video_driver_set_title_buf(void)
{
struct retro_system_info info;
core_get_system_info(&info);
strlcpy(video_driver_title_buf,
fill_string_concat(video_driver_title_buf,
msg_hash_to_str(MSG_PROGRAM),
" ",
sizeof(video_driver_title_buf));
strlcat(video_driver_title_buf,
" ", sizeof(video_driver_title_buf));
strlcat(video_driver_title_buf,
info.library_name,
sizeof(video_driver_title_buf));