Changed: #1051 Check for client.cfg in Ryzom application directory

hg/feature/sound
kervala 14 years ago
parent cd2164e602
commit 2767bc1483

@ -160,6 +160,10 @@ int main(int argc, char *argv[])
std::string config = "client.cfg";
// if client.cfg is not in current directory, use client.cfg from user directory
if (!CFile::isExists(config))
config = CPath::getApplicationDirectory("Ryzom") + config;
// if client.cfg is not in current directory, use client_default.cfg
if (!CFile::isExists(config))
config = "client_default.cfg";

Loading…
Cancel
Save