diff --git a/dll/base.cpp b/dll/base.cpp index 5c3cde81..7415cdda 100644 --- a/dll/base.cpp +++ b/dll/base.cpp @@ -93,7 +93,7 @@ bool set_env_variable(std::string name, std::string value) #endif -std::recursive_mutex global_mutex; +std::recursive_mutex global_mutex{}; // some arbitrary counter/time for reference const std::chrono::time_point startup_counter = std::chrono::high_resolution_clock::now(); diff --git a/dll/steam_client.cpp b/dll/steam_client.cpp index d5f1a45a..58b38dde 100644 --- a/dll/steam_client.cpp +++ b/dll/steam_client.cpp @@ -947,7 +947,7 @@ void Steam_Client::SetWarningMessageHook( SteamAPIWarningMessageHook_t pFunction // Trigger global shutdown for the DLL bool Steam_Client::BShutdownIfAllPipesClosed() { - PRINT_DEBUG("BShutdownIfAllPipesClosed\n"); + PRINT_DEBUG("Steam_Client::BShutdownIfAllPipesClosed\n"); if (!steam_pipes.size()) { bool joinable = background_keepalive.joinable(); if (joinable) {