From 91d139164414fd623ca6687e9ccab4a853008032 Mon Sep 17 00:00:00 2001 From: Mr_Goldberg Date: Sat, 23 May 2020 23:54:26 -0400 Subject: [PATCH] Fix some games that seem to never call the runcallbacks functions. --- dll/steam_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/steam_client.cpp b/dll/steam_client.cpp index 2ca7f56..bd09f85 100644 --- a/dll/steam_client.cpp +++ b/dll/steam_client.cpp @@ -42,7 +42,7 @@ static void background_thread(Steam_Client *client) global_mutex.lock(); PRINT_DEBUG("background thread run\n"); client->network->Run(); - client->steam_matchmaking->RunBackground(); + client->run_every_runcb->run(); global_mutex.unlock(); } }