mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-14 10:21:09 +00:00
Use a local plugins.cfg if available (allow us to run without installing)
This commit is contained in:
parent
4221824681
commit
8cb8481b37
@ -312,7 +312,12 @@ void OMW::Engine::go()
|
||||
std::string plugCfg = "plugins.cfg";
|
||||
std::string ogreCfg = "ogre.cfg";
|
||||
ogreCfg.insert(0, cfgUserDir);
|
||||
plugCfg.insert(0, cfgDir);
|
||||
|
||||
//A local plugins.cfg will be used if it exist, otherwise look in the default path
|
||||
if(!isFile(plugCfg.c_str()))
|
||||
{
|
||||
plugCfg.insert(0, cfgDir);
|
||||
}
|
||||
|
||||
mOgre.configure(!isFile(ogreCfg.c_str()), cfgUserDir, plugCfg, false);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user