This commit is contained in:
alexsandulescu 2021-07-17 00:01:29 +03:00
parent b27a763c01
commit 34c71b1007

View File

@ -511,7 +511,9 @@ CCompanion::CCompanion()
}
case EHostStatus::Hosting:
{
SendHostingPostRequest();
if (lastMap == "no_map" || lastMap == "")
HostingStatus = EHostStatus::NotHosting;
else SendHostingPostRequest();
break;
}
case EHostStatus::ConnectedToSomeoneElse:
@ -789,14 +791,10 @@ CCompanion::CCompanion()
ImGui::SetNextWindowSize(ImVec2(800, 890), ImGuiCond_FirstUseEver);
ImGui::SetWindowPos(ImVec2(-500, 50), ImGuiCond_FirstUseEver);
if (!ImGui::Begin(title, p_open))
if (!ImGui::Begin(title, NULL))
{
ImGui::End(); return;
}
if (*p_open == NULL)
{
g_bShowMenu = false;
}
///////////////////////////////////////////////////////////////////////
CompMenu();