Merge pull request #40 from momo5502/bugfix/steam-game-crash

Set steam proxy priority to run exactly after the updater
This commit is contained in:
Maurice Heumann 2022-10-01 20:47:27 +02:00 committed by GitHub
commit a0e654f0f2

View File

@ -235,6 +235,11 @@ namespace steam_proxy
steam_client_module.invoke<bool>("Steam_BReleaseSteamPipe", steam_pipe); steam_client_module.invoke<bool>("Steam_BReleaseSteamPipe", steam_pipe);
} }
} }
int priority() override
{
return 998; // Run after the updater
}
}; };
const utils::nt::library& get_overlay_module() const utils::nt::library& get_overlay_module()