mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-03 18:15:35 +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)
|
||||
{
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue