Explorar el Código

Fixed OS X client and server paths

stopiccot hace 12 años
padre
commit
585024e763
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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