Fix serverlist on -DRUN_IN_PLACE=0 (use path_user instead of path_share)

This commit is contained in:
Zeg9 2013-04-12 12:58:04 +02:00 committed by PilzAdam
parent 88ffb3f73b
commit c33b993397
1 changed files with 6 additions and 4 deletions

View File

@ -38,10 +38,12 @@ std::string getFilePath()
{
std::string serverlist_file = g_settings->get("serverlist_file");
std::string rel_path = std::string("client") + DIR_DELIM
+ "serverlist" + DIR_DELIM
+ serverlist_file;
std::string path = porting::path_share + DIR_DELIM + rel_path;
std::string dir_path = std::string("client") + DIR_DELIM
+ "serverlist" + DIR_DELIM;
fs::CreateDir(porting::path_user + DIR_DELIM + "client");
fs::CreateDir(porting::path_user + DIR_DELIM + dir_path);
std::string rel_path = dir_path + serverlist_file;
std::string path = porting::path_user + DIR_DELIM + rel_path;
return path;
}