formatting

This commit is contained in:
otavepto 2024-03-04 02:40:03 +02:00 committed by otavepto
parent c19fc81e84
commit 6a5fbf2b7d
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ bool set_env_variable(std::string name, std::string value)
#endif #endif
std::recursive_mutex global_mutex; std::recursive_mutex global_mutex{};
// some arbitrary counter/time for reference // some arbitrary counter/time for reference
const std::chrono::time_point<std::chrono::high_resolution_clock> startup_counter = std::chrono::high_resolution_clock::now(); const std::chrono::time_point<std::chrono::high_resolution_clock> startup_counter = std::chrono::high_resolution_clock::now();

View File

@ -947,7 +947,7 @@ void Steam_Client::SetWarningMessageHook( SteamAPIWarningMessageHook_t pFunction
// Trigger global shutdown for the DLL // Trigger global shutdown for the DLL
bool Steam_Client::BShutdownIfAllPipesClosed() bool Steam_Client::BShutdownIfAllPipesClosed()
{ {
PRINT_DEBUG("BShutdownIfAllPipesClosed\n"); PRINT_DEBUG("Steam_Client::BShutdownIfAllPipesClosed\n");
if (!steam_pipes.size()) { if (!steam_pipes.size()) {
bool joinable = background_keepalive.joinable(); bool joinable = background_keepalive.joinable();
if (joinable) { if (joinable) {