config.json editor 2

This commit is contained in:
Natsumi
2021-05-15 08:28:58 +12:00
parent 2c3485058e
commit 4d817e1316
2 changed files with 4 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ namespace VRCX
{
return "";
}
var json = System.IO.File.ReadAllText(configFile);
var json = File.ReadAllText(configFile);
return json;
}
@@ -70,7 +70,7 @@ namespace VRCX
{
var logPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"Low\VRChat\VRChat\";
var configFile = Path.Combine(logPath, @"config.json");
System.IO.File.WriteAllText(configFile, json);
File.WriteAllText(configFile, json);
}
public void ShowDevTools()