diff --git a/UnityLauncher/Tools.cs b/UnityLauncher/Tools.cs index 0c8dec8..729fce1 100644 --- a/UnityLauncher/Tools.cs +++ b/UnityLauncher/Tools.cs @@ -300,7 +300,7 @@ public static string GetProjectVersion(string path) { // in text format, then we need to try library file instead var newVersionPath = Path.Combine(path, "Library", "AnnotationManager"); - if (File.Exists(versionPath) == true) + if (File.Exists(newVersionPath) == true) { versionPath = newVersionPath; }