mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
wrong parameter for strtok_r when splitting extra_path (appendconfig). fixed #1439
This commit is contained in:
parent
d44ebefd49
commit
430aeba42b
@ -1082,7 +1082,7 @@ static bool config_load_file(const char *path, bool set_defaults)
|
||||
ret = config_append_file(conf, extra_path);
|
||||
if (!ret)
|
||||
RARCH_ERR("Failed to append config \"%s\"\n", extra_path);
|
||||
extra_path = strtok_r(NULL, ";", &save);
|
||||
extra_path = strtok_r(NULL, ",", &save);
|
||||
}
|
||||
|
||||
if (g_extern.verbosity)
|
||||
|
Loading…
x
Reference in New Issue
Block a user