Added file to disable overlay

Disable the overlay by creating a file disable_overlay.txt next to steam_api.dll
This commit is contained in:
Nemirtingas 2019-11-08 15:57:04 +01:00
parent 547cbdbb4e
commit c8288d6bf3
3 changed files with 9 additions and 3 deletions

View File

@ -212,7 +212,8 @@ STEAMAPI_API bool S_CALLTYPE SteamAPI_Init()
Steam_Client* client = get_steam_client();
client->userLogIn();
#ifndef NO_OVERLAY
client->steam_overlay->SetupOverlay();
if( client->enable_overlay )
client->steam_overlay->SetupOverlay();
#endif
return true;

View File

@ -41,11 +41,15 @@ static void background_thread(Steam_Client *client)
Steam_Client::Steam_Client()
{
uint32 appid = create_localstorage_settings(&settings_client, &settings_server, &local_storage);
std::string items_db_file_path = (Local_Storage::get_game_settings_path() + "items.json");
network = new Networking(settings_server->get_local_steam_id(), appid, settings_server->get_port(), &(settings_server->custom_broadcasts));
{
std::ifstream chk_ovlay(Local_Storage::get_program_path() + PATH_SEPARATOR + "disable_overlay.txt", std::ios::in);
if (chk_ovlay)
enable_overlay = false;
}
network = new Networking(settings_server->get_local_steam_id(), appid, settings_server->get_port(), &(settings_server->custom_broadcasts), settings_server->disable_networking);
callback_results_client = new SteamCallResults();
callback_results_server = new SteamCallResults();

View File

@ -124,6 +124,7 @@ public:
Steam_Overlay* steam_overlay;
bool enable_overlay = true;
bool user_logged_in = false;
bool server_init = false;
std::thread background_keepalive;