Merge branch 'master' into windows

This commit is contained in:
HappyDOGE
2022-07-27 12:58:56 +03:00
3089 changed files with 38639 additions and 844820 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ bool CCustomGames::CheckTagFilter( gameserveritem_t &server )
V_SplitString( m_szTagFilter, ",", TagList );
for ( int i = 0; i < TagList.Count(); i++ )
{
if ( ( Q_strnistr( server.m_szGameTags, TagList[i], MAX_TAG_CHARACTERS ) ) == (const char*)TagsExclude() )
if ( ( Q_strnistr( server.m_szGameTags, TagList[i], MAX_TAG_CHARACTERS ) != 0 ) == TagsExclude() )
{
bRetVal = false;
break;
+4 -3
View File
@@ -154,9 +154,10 @@ CServerBrowserDialog::~CServerBrowserDialog()
SaveUserData();
if (m_pSavedData)
{
m_pSavedData->deleteThis();
}
if( m_pFilterData )
m_pFilterData->deleteThis();
}
@@ -813,4 +814,4 @@ void CServerBrowserDialog::OnKeyCodePressed( vgui::KeyCode code )
}
BaseClass::OnKeyCodePressed( code );
}
}