mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-02-05 10:10:44 +03:00
Revert "lsteamclient: Use getenv() in load_steamclient()."
This reverts commit df4821f3612b8876bcbd2e0803f9c57f72b209d4. CW-Bug-Id: #23170
This commit is contained in:
parent
29e9357b09
commit
f2fa9ed325
@ -306,13 +306,18 @@ done:
|
||||
|
||||
static int load_steamclient(void)
|
||||
{
|
||||
char steam_app_id[4096], ignore_child_processes[4096];
|
||||
struct steamclient_init_params params = {.g_tmppath = temp_path_buffer};
|
||||
|
||||
if (!(params.steam_app_id = getenv("SteamAppId")))
|
||||
params.steam_app_id_unset = TRUE;
|
||||
if (!GetEnvironmentVariableA("SteamAppId", steam_app_id, ARRAY_SIZE(steam_app_id)))
|
||||
params.steam_app_id_unset = GetLastError() == ERROR_ENVVAR_NOT_FOUND;
|
||||
else
|
||||
params.steam_app_id = steam_app_id;
|
||||
|
||||
if (!(params.ignore_child_processes = getenv("IgnoreChildProcesses")))
|
||||
params.ignore_child_processes_unset = TRUE;
|
||||
if (!GetEnvironmentVariableA("IgnoreChildProcesses", ignore_child_processes, ARRAY_SIZE(ignore_child_processes)))
|
||||
params.ignore_child_processes_unset = GetLastError() == ERROR_ENVVAR_NOT_FOUND;
|
||||
else
|
||||
params.ignore_child_processes = ignore_child_processes;
|
||||
|
||||
if (STEAMCLIENT_CALL( steamclient_init, ¶ms )) return 0;
|
||||
return 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user