diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-01 17:16:42 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-01 17:16:42 +0100 |
commit | 51df18abbc0c344b56f88e0a66b6b46d6aca375c (patch) | |
tree | 1ce680cb9134273870373134f845633e2c390bde /NorthstarDedicatedTest/filesystem.cpp | |
parent | 1ff8e068e62d095775ef2ae54d3685d89238f28c (diff) | |
download | NorthstarLauncher-51df18abbc0c344b56f88e0a66b6b46d6aca375c.tar.gz NorthstarLauncher-51df18abbc0c344b56f88e0a66b6b46d6aca375c.zip |
Revert "small modmanager refactors"
This reverts commit 1ff8e068e62d095775ef2ae54d3685d89238f28c.
Diffstat (limited to 'NorthstarDedicatedTest/filesystem.cpp')
-rw-r--r-- | NorthstarDedicatedTest/filesystem.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/NorthstarDedicatedTest/filesystem.cpp b/NorthstarDedicatedTest/filesystem.cpp index 127a9484..1e17017e 100644 --- a/NorthstarDedicatedTest/filesystem.cpp +++ b/NorthstarDedicatedTest/filesystem.cpp @@ -107,7 +107,7 @@ bool TryReplaceFile(char* path, bool shouldCompile) auto file = g_ModManager->m_modFiles.find(fs::path(path).lexically_normal().string()); if (file != g_ModManager->m_modFiles.end()) { - SetNewModSearchPaths(file->second.owningMod); + SetNewModSearchPaths(file->second->owningMod); return true; } @@ -167,12 +167,12 @@ VPKData* MountVPKHook(IFileSystem* fileSystem, const char* vpkPath) spdlog::info("MountVPK {}", vpkPath); VPKData* ret = mountVPK(fileSystem, vpkPath); - for (Mod mod : g_ModManager->m_loadedMods) + for (Mod* mod : g_ModManager->m_loadedMods) { - if (!mod.Enabled) + if (!mod->Enabled) continue; - for (std::string& vpkPath : mod.Vpks) + for (std::string& vpkPath : mod->Vpks) { spdlog::info(vpkPath); spdlog::info((void*)mountVPK(fileSystem, vpkPath.c_str())); |