From 60b627163a787b0d5335a4bce5c196d26c9feb17 Mon Sep 17 00:00:00 2001 From: Mr_Goldberg Date: Wed, 15 Jan 2020 22:05:19 -0500 Subject: [PATCH] Comment out microsecond sleep that no longer seems necessary. --- dll/dll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/dll.cpp b/dll/dll.cpp index b027a70..2040a46 100644 --- a/dll/dll.cpp +++ b/dll/dll.cpp @@ -304,7 +304,7 @@ STEAMAPI_API void S_CALLTYPE SteamAPI_RunCallbacks() { PRINT_DEBUG("SteamAPI_RunCallbacks\n"); get_steam_client()->RunCallbacks(true, false); - std::this_thread::sleep_for(std::chrono::microseconds(1)); //fixes resident evil revelations lagging. + //std::this_thread::sleep_for(std::chrono::microseconds(1)); //fixes resident evil revelations lagging. (Seems to work fine without this right now, commenting out) }