mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 13:20:43 +00:00
Turn these two fill_pathname_join_delim() calls into plain strlcat()
This commit is contained in:
parent
b2634ea588
commit
6ad88b080e
@ -4515,8 +4515,7 @@ static void ozone_context_reset_horizontal_list(ozone_handle_t *ozone)
|
||||
image_texture_free(&ti);
|
||||
}
|
||||
|
||||
fill_pathname_join_delim(sysname, sysname,
|
||||
"content.png", '-', sizeof(sysname));
|
||||
strlcat(sysname, "-content.png", sizeof(sysname));
|
||||
fill_pathname_join_special(content_texturepath, ozone->icons_path, sysname,
|
||||
sizeof(content_texturepath));
|
||||
|
||||
|
@ -2347,9 +2347,7 @@ static void xmb_context_reset_horizontal_list(
|
||||
image_texture_free(&ti);
|
||||
}
|
||||
|
||||
fill_pathname_join_delim(sysname, sysname,
|
||||
FILE_PATH_CONTENT_BASENAME, '-',
|
||||
sizeof(sysname));
|
||||
strlcat(sysname, "-content.png", sizeof(sysname));
|
||||
fill_pathname_join_special(content_texturepath, iconpath, sysname,
|
||||
sizeof(content_texturepath));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user