From 430aeba42b3ad231c477ae8ce9a5237640d0c1af Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Mon, 23 Feb 2015 19:58:32 +0000 Subject: [PATCH] wrong parameter for strtok_r when splitting extra_path (appendconfig). fixed #1439 --- settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.c b/settings.c index f163780193..91c99c20d1 100644 --- a/settings.c +++ b/settings.c @@ -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)