Fixed incorrect return value from ApplyProfile

Fixes #41. Silly error from previous return value.
This commit is contained in:
Terry MacDonald 2021-09-22 08:22:57 +12:00
parent e0bb774fde
commit c820c9bac4

View File

@ -936,7 +936,7 @@ namespace DisplayMagicianShared
else else
{ {
SharedLogger.logger.Trace($"ProfileRepository/ApplyProfile: Successfully applied the {profile.VideoMode.ToString("G")} Profile!"); SharedLogger.logger.Trace($"ProfileRepository/ApplyProfile: Successfully applied the {profile.VideoMode.ToString("G")} Profile!");
return ApplyProfileResult.Error; return ApplyProfileResult.Successful;
} }
} }