Small changes

This commit is contained in:
Natsumi
2024-08-21 09:23:55 +12:00
parent baebfe2041
commit 3baf00af27
4 changed files with 6 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ namespace VRCX
public bool OpenVrcAppDataFolder()
{
var path = GetVRChatAppDataLocation();
var path = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"Low\VRChat\VRChat";
if (!Directory.Exists(path))
return false;

View File

@@ -140,7 +140,7 @@ namespace VRCX
var messageBoxResult = MessageBox.Show(cpuError.Value.Item1, "Potentially Faulty CPU Detected", MessageBoxButtons.YesNo, MessageBoxIcon.Error);
if (messageBoxResult == DialogResult.Yes)
{
Process.Start(cpuError.Value.Item2);
AppApi.Instance.OpenLink(cpuError.Value.Item2);
}
}
logger.Fatal(e, "Unhandled Exception, program dying");