1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +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
{
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