浏览代码

Fixed OS X client and server paths

stopiccot 12 年之前
父节点
当前提交
585024e763
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/VCMIDirs.cpp

+ 2 - 2
lib/VCMIDirs.cpp

@@ -103,12 +103,12 @@ std::string VCMIDirs::libraryPath() const
 
 std::string VCMIDirs::clientPath() const
 {
-	return userDataPath() + "\\" + "VCMI_client.exe";
+	return "./vcmiclient";
 }
 
 std::string VCMIDirs::serverPath() const
 {
-	return userDataPath() + "\\" + "VCMI_server.exe";
+	return "./vcmiserver";
 }
 
 std::vector<std::string> VCMIDirs::dataPaths() const