mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-04-28 13:27:58 +03:00
Fix persistent save data getting loaded before mods.
This commit is contained in:
parent
21be4e17fb
commit
b70b5c3b87
1 changed files with 3 additions and 3 deletions
|
@ -236,9 +236,6 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
Config::Load();
|
||||
|
||||
if (!PersistentStorageManager::LoadBinary())
|
||||
LOGFN_ERROR("Failed to load persistent storage binary... (status code {})", (int)PersistentStorageManager::BinStatus);
|
||||
|
||||
if (forceInstallationCheck)
|
||||
{
|
||||
|
@ -342,6 +339,9 @@ int main(int argc, char *argv[])
|
|||
|
||||
ModLoader::Init();
|
||||
|
||||
if (!PersistentStorageManager::LoadBinary())
|
||||
LOGFN_ERROR("Failed to load persistent storage binary... (status code {})", (int)PersistentStorageManager::BinStatus);
|
||||
|
||||
KiSystemStartup();
|
||||
|
||||
uint32_t entry = LdrLoadModule(modulePath);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue