diff options
Diffstat (limited to 'NorthstarDLL/modlocalisation.cpp')
-rw-r--r-- | NorthstarDLL/modlocalisation.cpp | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/NorthstarDLL/modlocalisation.cpp b/NorthstarDLL/modlocalisation.cpp index 66a8977f..14379bb3 100644 --- a/NorthstarDLL/modlocalisation.cpp +++ b/NorthstarDLL/modlocalisation.cpp @@ -1,33 +1,33 @@ -#include "pch.h"
-#include "modmanager.h"
-
-AUTOHOOK_INIT()
-
-AUTOHOOK(AddLocalisationFile, localize.dll + 0x6D80,
-bool,, (void* pVguiLocalize, const char* path, const char* pathId, char unknown))
-{
- static bool bLoadModLocalisationFiles = true;
- bool ret = AddLocalisationFile(pVguiLocalize, path, pathId, unknown);
-
- if (ret)
- spdlog::info("Loaded localisation file {} successfully", path);
-
- if (!bLoadModLocalisationFiles)
- return ret;
-
- bLoadModLocalisationFiles = false;
-
- for (Mod mod : g_pModManager->m_LoadedMods)
- if (mod.m_bEnabled)
- for (std::string& localisationFile : mod.LocalisationFiles)
- AddLocalisationFile(pVguiLocalize, localisationFile.c_str(), pathId, unknown);
-
- bLoadModLocalisationFiles = true;
-
- return ret;
-}
-
-ON_DLL_LOAD_CLIENT("localize.dll", Localize, (CModule module))
-{
- AUTOHOOK_DISPATCH()
-}
\ No newline at end of file +#include "pch.h" +#include "modmanager.h" + +AUTOHOOK_INIT() + +AUTOHOOK(AddLocalisationFile, localize.dll + 0x6D80, +bool,, (void* pVguiLocalize, const char* path, const char* pathId, char unknown)) +{ + static bool bLoadModLocalisationFiles = true; + bool ret = AddLocalisationFile(pVguiLocalize, path, pathId, unknown); + + if (ret) + spdlog::info("Loaded localisation file {} successfully", path); + + if (!bLoadModLocalisationFiles) + return ret; + + bLoadModLocalisationFiles = false; + + for (Mod mod : g_pModManager->m_LoadedMods) + if (mod.m_bEnabled) + for (std::string& localisationFile : mod.LocalisationFiles) + AddLocalisationFile(pVguiLocalize, localisationFile.c_str(), pathId, unknown); + + bLoadModLocalisationFiles = true; + + return ret; +} + +ON_DLL_LOAD_CLIENT("localize.dll", Localize, (CModule module)) +{ + AUTOHOOK_DISPATCH() +} |