Switched everything to new GTAFolder class and removed all direct references to Settings.Default.GTAFolder

This commit is contained in:
PNWParksFan
2018-02-21 01:12:17 -08:00
Unverified
parent d82c34c542
commit 6ae3b470f6
26 changed files with 63 additions and 156 deletions
+2 -2
View File
@@ -41,9 +41,9 @@ namespace CodeWalker
{
Task.Run(() =>
{
GTA5Keys.LoadFromPath(Settings.Default.GTAFolder);
GTA5Keys.LoadFromPath(GTAFolder.CurrentGTAFolder);
RpfMan = new RpfManager();
RpfMan.Init(Settings.Default.GTAFolder, UpdateStatus, UpdateStatus, false, false);
RpfMan.Init(GTAFolder.CurrentGTAFolder, UpdateStatus, UpdateStatus, false, false);
RPFScanComplete();
});
}