1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

Correct path to gamecontrollerdb.txt (Fixes #3112)

This commit is contained in:
scrawl 2015-12-31 00:37:47 +01:00
parent 63b9b075aa
commit 7f7e8c63bf

View File

@ -474,8 +474,8 @@ void OMW::Engine::prepareEngine (Settings::Manager & settings)
}
// find correct path to the game controller bindings
const std::string localdefault = mCfgMgr.getLocalPath().string() + "/gamecontrollerdb.cfg";
const std::string globaldefault = mCfgMgr.getGlobalPath().string() + "/gamecontrollerdb.cfg";
const std::string localdefault = mCfgMgr.getLocalPath().string() + "/gamecontrollerdb.txt";
const std::string globaldefault = mCfgMgr.getGlobalPath().string() + "/gamecontrollerdb.txt";
std::string gameControllerdb;
if (boost::filesystem::exists(localdefault))
gameControllerdb = localdefault;