Browse Source

Fixed OS X client and server paths

stopiccot 12 năm trước cách đây
mục cha
commit
585024e763
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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