Created CodeWalker.Core

This commit is contained in:
dexyfex
2018-02-24 22:52:58 +11:00
Unverified
parent 947611765e
commit 709bf125ce
33 changed files with 581 additions and 300 deletions
+8 -1
View File
@@ -3889,7 +3889,14 @@ namespace CodeWalker
try
{
GTA5Keys.LoadFromPath(Settings.Default.GTAFolder); //now loads from magic
GTA5Keys.LoadFromPath(Settings.Default.GTAFolder, Settings.Default.Key);
//save the key for later if it's not saved already. not really ideal to have this in this thread
if (string.IsNullOrEmpty(Settings.Default.Key) && (GTA5Keys.PC_AES_KEY != null))
{
Settings.Default.Key = Convert.ToBase64String(GTA5Keys.PC_AES_KEY);
Settings.Default.Save();
}
}
catch
{