mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:53:52 +00:00
if v2 doesn't exist, don't erroneously set keyboardUserExists to true.
This commit is contained in:
parent
5d77ebdc60
commit
464bbe4d6f
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ void OMW::Engine::prepareEngine (Settings::Manager & settings)
|
||||||
if(!keybinderUserExists)
|
if(!keybinderUserExists)
|
||||||
{
|
{
|
||||||
boost::filesystem::copy_file(mCfgMgr.getUserConfigPath() / "input_v2.xml", mCfgMgr.getUserConfigPath() / "input_v3.xml");
|
boost::filesystem::copy_file(mCfgMgr.getUserConfigPath() / "input_v2.xml", mCfgMgr.getUserConfigPath() / "input_v3.xml");
|
||||||
keybinderUserExists=true;
|
keybinderUserExists = boost::filesystem::exists(keybinderUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
// find correct path to the game controller bindings
|
// find correct path to the game controller bindings
|
||||||
|
|
Loading…
Reference in a new issue