Add a path seperator to SetUserPath.

This commit is contained in:
C.W. Betts
2022-04-04 22:24:20 -06:00
parent 46e332c285
commit b6de4314df
+1 -1
View File
@@ -998,7 +998,7 @@ void SetUserPath(unsigned int dir_index, std::string path)
if (path.empty())
return;
s_user_paths[dir_index] = path;
s_user_paths[dir_index] = path + DIR_SEP;
RebuildUserDirectories(dir_index);
}