Comment out microsecond sleep that no longer seems necessary.

This commit is contained in:
Mr_Goldberg 2020-01-15 22:05:19 -05:00
parent 38ad2c057c
commit 60b627163a
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}