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/modlocalisation.cpp | |
parent | 1ff8e068e62d095775ef2ae54d3685d89238f28c (diff) | |
download | NorthstarLauncher-51df18abbc0c344b56f88e0a66b6b46d6aca375c.tar.gz NorthstarLauncher-51df18abbc0c344b56f88e0a66b6b46d6aca375c.zip |
Revert "small modmanager refactors"
This reverts commit 1ff8e068e62d095775ef2ae54d3685d89238f28c.
Diffstat (limited to 'NorthstarDedicatedTest/modlocalisation.cpp')
-rw-r--r-- | NorthstarDedicatedTest/modlocalisation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/modlocalisation.cpp b/NorthstarDedicatedTest/modlocalisation.cpp index d30fb2c9..d8168d0c 100644 --- a/NorthstarDedicatedTest/modlocalisation.cpp +++ b/NorthstarDedicatedTest/modlocalisation.cpp @@ -21,8 +21,8 @@ bool AddLocalisationFileHook(void* g_pVguiLocalize, const char* path, const char loadModLocalisationFiles = false; - for (Mod mod : g_ModManager->m_loadedMods) - for (std::string& localisationFile : mod.LocalisationFiles) + for (Mod* mod : g_ModManager->m_loadedMods) + for (std::string& localisationFile : mod->LocalisationFiles) AddLocalisationFile(g_pVguiLocalize, localisationFile.c_str(), pathId, unknown); loadModLocalisationFiles = true; |