From 3027c87119f11d71778be3236ee3f9b48b66e768 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Sun, 24 Aug 2025 12:04:31 +0200 Subject: [PATCH] Change log title to reflect game's name --- Sword Of The Sea/SwordOfTheSea.vcxproj | 2 +- Sword Of The Sea/dllmain.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sword Of The Sea/SwordOfTheSea.vcxproj b/Sword Of The Sea/SwordOfTheSea.vcxproj index 1e3d586..9fc765d 100644 --- a/Sword Of The Sea/SwordOfTheSea.vcxproj +++ b/Sword Of The Sea/SwordOfTheSea.vcxproj @@ -180,7 +180,7 @@ $(SolutionDir)Memory;$(SolutionDir)Maths;$(SolutionDir)Obfuscate;$(SolutionDir)external;$(SolutionDir)external\safetyhook\include;$(SolutionDir)external\zydis\dependencies\zycore\include;$(SolutionDir)external\zydis\include;$(SolutionDir)zydis\src;$(SolutionDir)external\MinHook\include;%(AdditionalIncludeDirectories) /utf-8 %(AdditionalOptions) MultiThreadedDLL - stdcpp23 + stdcpplatest true diff --git a/Sword Of The Sea/dllmain.cpp b/Sword Of The Sea/dllmain.cpp index b6fab24..209ee25 100644 --- a/Sword Of The Sea/dllmain.cpp +++ b/Sword Of The Sea/dllmain.cpp @@ -164,7 +164,7 @@ static void InitializeLogger() std::filesystem::path log_path = std::filesystem::absolute(PLUGIN_LOG); if (std::filesystem::exists(log_path)) std::filesystem::remove(log_path); - logger = std::make_shared("Hell Is Us", std::make_shared(PLUGIN_LOG, 10 * 1024 * 1024, 1)); + logger = std::make_shared("Sword Of The Sea", std::make_shared(PLUGIN_LOG, 10 * 1024 * 1024, 1)); logger->flush_on(spdlog::level::debug); // Flush automatically } catch (const spdlog::spdlog_ex& ex)