use cached path

This commit is contained in:
pypy
2020-11-08 14:47:53 +09:00
parent 6c923d6a53
commit c05e884cb5
7 changed files with 17 additions and 10 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ namespace VRCX
public static VRCXStorage Instance { get; private set; }
private static readonly ReaderWriterLockSlim m_Lock = new ReaderWriterLockSlim();
private static Dictionary<string, string> m_Storage = new Dictionary<string, string>();
private static string m_JsonPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "VRCX.json");
private static string m_JsonPath = Path.Combine(Program.BaseDirectory, "VRCX.json");
private static bool m_Dirty;
static VRCXStorage()