Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
No longer skip profile migration for version 1 profiles (Jays2Kings)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryochan7 committed Sep 27, 2020
1 parent 450cba3 commit 3c53a42
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions DS4Windows/DS4Control/ProfileMigration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ public ProfileMigration(string filePath)
public bool RequiresMigration()
{
bool result = false;
// Skip configFileVersion == 1 and pass profile XML as is
if (configFileVersion > 1 && configFileVersion < Global.CONFIG_VERSION)
if (configFileVersion >= 1 && configFileVersion < Global.CONFIG_VERSION)
{
result = true;
}
Expand Down

0 comments on commit 3c53a42

Please sign in to comment.