bugfixes and Doc

This commit is contained in:
Theenoro
2022-05-15 03:02:51 +02:00
parent aa2e6cbc60
commit 764dcf50a5
22 changed files with 259 additions and 65 deletions

View File

@@ -14,7 +14,7 @@ namespace BeatSaber_Versions.controller.helper
String f = @"C:\Program Files (x86)\Steam\steamapps\libraryfolders.vdf";
String basicBeatSaberPath = "";
if (File.Exists(f))
if (File.Exists(f))
{
dynamic steam = VdfConvert.Deserialize(File.ReadAllText(f));
dynamic libs = steam.Value;
@@ -38,7 +38,7 @@ namespace BeatSaber_Versions.controller.helper
Console.Write(game);
if (game.Key == "620980")
{
basicBeatSaberPath = $"{path}\\Beat Saber";
basicBeatSaberPath = $"{path}\\steamapps\\common\\Beat Saber";
found = true;
break;
}