1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-27 22:47:48 +02:00

Fixed OS X client and server paths

This commit is contained in:
stopiccot 2013-10-07 03:19:11 +00:00
parent cbc8cde10a
commit 585024e763

View File

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