diff options
Diffstat (limited to 'src/tools/connection_patcher/Program.cpp')
-rw-r--r-- | src/tools/connection_patcher/Program.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/connection_patcher/Program.cpp b/src/tools/connection_patcher/Program.cpp index 949365b54ee..a5c22cdfc24 100644 --- a/src/tools/connection_patcher/Program.cpp +++ b/src/tools/connection_patcher/Program.cpp @@ -79,6 +79,10 @@ namespace Connection_Patcher std::vector<unsigned char> verVec(verPatch.begin(), verPatch.end()); patcher->Patch(verVec, Patterns::Common::VersionsFile()); + std::cout << "patching launcher login parameters location\n"; + // change registry/CFPreferences path + patcher->Patch(Patches::Common::LauncherLoginParametersLocation(), Patterns::Common::LauncherLoginParametersLocation()); + patcher->Finish(output); std::cout << "Patching done.\n"; |