Fix FastFlags being loaded too early

This commit is contained in:
pizzaboxer 2023-04-21 18:25:32 +01:00
parent 43555d7a4e
commit 8dde69d580
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -197,7 +197,6 @@ namespace Bloxstrap
}
Directories.Initialize(BaseDirectory);
FastFlags.Load();
// we shouldn't save settings on the first run until the first installation is finished,
// just in case the user decides to cancel the install
@ -206,6 +205,7 @@ namespace Bloxstrap
InitLog();
Settings.Load();
State.Load();
FastFlags.Load();
}
#if !DEBUG