Bläddra i källkod

Fixed OS X client and server paths

stopiccot 12 år sedan
förälder
incheckning
585024e763
1 ändrade filer med 2 tillägg och 2 borttagningar
  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