Merge pull request #51 from OneFourOne/develop

disable steam for now + add custom title menu
This commit is contained in:
Dss0 2020-12-09 21:28:12 +01:00 committed by GitHub
commit a753159113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -907,6 +907,7 @@ namespace Components
Menus::Add("ui_mp/pc_store.menu");
Menus::Add("ui_mp/iw4x_credits.menu");
Menus::Add("ui_mp/resetclass.menu");
Menus::Add("ui_mp/popup_customtitle.menu");
}
Menus::~Menus()

View File

@ -111,7 +111,8 @@ namespace Steam
{
bool SteamAPI_Init()
{
Proxy::SetGame(10190);
//The latest steam update has broke IW4x's steam integration. As of now the best way of dealing with this is to just disable it. This has been commented out so that if fixed, this may be easily enabled once again.
/*Proxy::SetGame(10190);
if (!Proxy::Inititalize())
{
@ -122,7 +123,7 @@ namespace Steam
{
Proxy::SetMod("IW4x: Modern Warfare 2");
Proxy::RunGame();
}
}*/
return true;
}