mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-10 11:06:43 +00:00
Correct path to gamecontrollerdb.txt (Fixes #3112)
This commit is contained in:
parent
63b9b075aa
commit
7f7e8c63bf
1 changed files with 2 additions and 2 deletions
|
@ -474,8 +474,8 @@ void OMW::Engine::prepareEngine (Settings::Manager & settings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// find correct path to the game controller bindings
|
// find correct path to the game controller bindings
|
||||||
const std::string localdefault = mCfgMgr.getLocalPath().string() + "/gamecontrollerdb.cfg";
|
const std::string localdefault = mCfgMgr.getLocalPath().string() + "/gamecontrollerdb.txt";
|
||||||
const std::string globaldefault = mCfgMgr.getGlobalPath().string() + "/gamecontrollerdb.cfg";
|
const std::string globaldefault = mCfgMgr.getGlobalPath().string() + "/gamecontrollerdb.txt";
|
||||||
std::string gameControllerdb;
|
std::string gameControllerdb;
|
||||||
if (boost::filesystem::exists(localdefault))
|
if (boost::filesystem::exists(localdefault))
|
||||||
gameControllerdb = localdefault;
|
gameControllerdb = localdefault;
|
||||||
|
|
Loading…
Reference in a new issue