aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/modlocalisation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/modlocalisation.cpp')
-rw-r--r--NorthstarDLL/modlocalisation.cpp64
1 files changed, 32 insertions, 32 deletions
diff --git a/NorthstarDLL/modlocalisation.cpp b/NorthstarDLL/modlocalisation.cpp
index ad01192d..af5ffc6e 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.Enabled)
- for (std::string& localisationFile : mod.LocalisationFiles)
- AddLocalisationFile(pVguiLocalize, localisationFile.c_str(), pathId, unknown);
-
- bLoadModLocalisationFiles = true;
-
- return ret;
-})
-
-ON_DLL_LOAD_CLIENT("localize.dll", Localize, [](HMODULE baseAddress)
-{
- AUTOHOOK_DISPATCH()
+#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, [](HMODULE baseAddress)
+{
+ AUTOHOOK_DISPATCH()
}) \ No newline at end of file