mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Fix mistake in prior commit - should be concatenated to string
This commit is contained in:
parent
6caa139700
commit
5bb3fbab93
@ -875,7 +875,7 @@ static void content_file_get_path(
|
|||||||
content_path, sizeof(info_path));
|
content_path, sizeof(info_path));
|
||||||
info_path[_len ] = '#';
|
info_path[_len ] = '#';
|
||||||
info_path[_len+1] = '\0';
|
info_path[_len+1] = '\0';
|
||||||
strlcpy(info_path, archive_file, sizeof(info_path));
|
strlcat(info_path, archive_file, sizeof(info_path));
|
||||||
|
|
||||||
/* Update 'content' string_list */
|
/* Update 'content' string_list */
|
||||||
string_list_set(content, idx, info_path);
|
string_list_set(content, idx, info_path);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user