mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +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);
|
image_texture_free(&ti);
|
||||||
}
|
}
|
||||||
|
|
||||||
fill_pathname_join_delim(sysname, sysname,
|
strlcat(sysname, "-content.png", sizeof(sysname));
|
||||||
"content.png", '-', sizeof(sysname));
|
|
||||||
fill_pathname_join_special(content_texturepath, ozone->icons_path, sysname,
|
fill_pathname_join_special(content_texturepath, ozone->icons_path, sysname,
|
||||||
sizeof(content_texturepath));
|
sizeof(content_texturepath));
|
||||||
|
|
||||||
|
@ -2347,9 +2347,7 @@ static void xmb_context_reset_horizontal_list(
|
|||||||
image_texture_free(&ti);
|
image_texture_free(&ti);
|
||||||
}
|
}
|
||||||
|
|
||||||
fill_pathname_join_delim(sysname, sysname,
|
strlcat(sysname, "-content.png", sizeof(sysname));
|
||||||
FILE_PATH_CONTENT_BASENAME, '-',
|
|
||||||
sizeof(sysname));
|
|
||||||
fill_pathname_join_special(content_texturepath, iconpath, sysname,
|
fill_pathname_join_special(content_texturepath, iconpath, sysname,
|
||||||
sizeof(content_texturepath));
|
sizeof(content_texturepath));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user