Skip to content

Commit

Permalink
fix: fix wrong namespace for debug build (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlayaN authored Apr 4, 2024
1 parent 6fa104d commit 9a2d242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XSEPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void InitializeLog([[maybe_unused]] spdlog::level::level_enum a_level = spdlog::
extern "C" DLLEXPORT bool SKSEAPI SKSEPlugin_Load(const SKSE::LoadInterface* a_skse)
{
#ifndef NDEBUG
while (!WinAPI::IsDebuggerPresent()) {};
while (!REX::W32::IsDebuggerPresent()) {};
#endif
InitializeLog();
logger::info("Loaded {} {}", Plugin::NAME, Plugin::VERSION.string());
Expand Down

0 comments on commit 9a2d242

Please sign in to comment.