Implementing overlay into existing code.

This commit is contained in:
Nemirtingas 2019-07-25 23:33:28 +02:00
parent bf9d85755c
commit a60a106daf
5 changed files with 34 additions and 18 deletions

View file

@ -200,7 +200,11 @@ S_API bool S_CALLTYPE SteamAPI_Init()
crack_SteamAPI_Init();
#endif
load_old_interface_versions();
get_steam_client()->userLogIn();
Steam_Client* client = get_steam_client();
client->userLogIn();
client->steam_overlay->SetupOverlay();
return true;
}