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

Commit

Permalink
fix: change the order of rotations loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed May 15, 2023
1 parent 5884bc3 commit 06356bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RotationSolver/RotationHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ internal Assembly LoadFromFile(string filePath)
var pdbPath = Path.ChangeExtension(filePath, ".pdb");
if (!File.Exists(pdbPath))
{
PluginLog.Information($"Failed to load{pdbPath}");
PluginLog.Information($"Failed to load {pdbPath}");
return LoadFromStream(file);
}
using var pdbFile = File.Open(pdbPath, FileMode.Open, FileAccess.Read, FileShare.Read);
Expand Down

0 comments on commit 06356bf

Please sign in to comment.