More bugfixes
This commit is contained in:
parent
caec3f954f
commit
8f91c7dc6a
@ -1,2 +1,2 @@
|
||||
@echo off
|
||||
premake5 %* vs2015
|
||||
tools\premake5 %* vs2015
|
@ -155,7 +155,7 @@ workspace "iw4x"
|
||||
-- Pre-build
|
||||
prebuildcommands {
|
||||
"cd %{_MAIN_SCRIPT_DIR}",
|
||||
"premake5 generate-buildinfo"
|
||||
"tools\\premake5 generate-buildinfo"
|
||||
}
|
||||
|
||||
-- Post-build
|
||||
|
@ -153,6 +153,9 @@ namespace Components
|
||||
|
||||
ServerList::RefreshContainer.Mutex.lock();
|
||||
|
||||
ServerList::RefreshContainer.SendCount = 0;
|
||||
ServerList::RefreshContainer.SentCount = 0;
|
||||
|
||||
for (auto server : tempList)
|
||||
{
|
||||
ServerList::InsertRequest(server.Addr, false);
|
||||
@ -228,10 +231,9 @@ namespace Components
|
||||
ServerList::VisibleList.clear();
|
||||
ServerList::RefreshContainer.Mutex.lock();
|
||||
ServerList::RefreshContainer.Servers.clear();
|
||||
ServerList::RefreshContainer.Mutex.unlock();
|
||||
|
||||
ServerList::RefreshContainer.SendCount = 0;
|
||||
ServerList::RefreshContainer.SentCount = 0;
|
||||
ServerList::RefreshContainer.Mutex.unlock();
|
||||
|
||||
if (ServerList::IsOfflineList())
|
||||
{
|
||||
@ -349,6 +351,21 @@ namespace Components
|
||||
if (!alreadyInserted)
|
||||
{
|
||||
ServerList::RefreshContainer.Servers.push_back(container);
|
||||
|
||||
auto list = ServerList::GetList();
|
||||
if (list)
|
||||
{
|
||||
for (auto server : *list)
|
||||
{
|
||||
if (server.Addr == container.Target)
|
||||
{
|
||||
ServerList::RefreshContainer.SendCount--;
|
||||
ServerList::RefreshContainer.SentCount--;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ServerList::RefreshContainer.SendCount++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user