mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fix for playlist items that have been scanned and don't have an
associated core - we don't want to resolve the path if core_path is set to "DETECT"
This commit is contained in:
parent
95c585e864
commit
23abe5025b
1 changed files with 2 additions and 1 deletions
|
@ -682,7 +682,8 @@ bool playlist_push(playlist_t *playlist,
|
|||
|
||||
/* Get 'real' core path */
|
||||
strlcpy(real_core_path, entry->core_path, sizeof(real_core_path));
|
||||
path_resolve_realpath(real_core_path, sizeof(real_core_path));
|
||||
if (!string_is_equal(real_core_path, file_path_str(FILE_PATH_DETECT)))
|
||||
path_resolve_realpath(real_core_path, sizeof(real_core_path));
|
||||
|
||||
if (string_is_empty(real_core_path))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue