Mac OS X 10.6 & More C++03 Support (#68)

* Mac OS X 10.6 & More C++03 Support

* Fix SDL2 options.txt loading for C++03

---------

Co-authored-by: Brent Da Mage <BrentDaMage@users.noreply.github.com>
This commit is contained in:
Brent
2023-08-27 03:46:15 -05:00
committed by GitHub
parent 0c38c01c28
commit f7915a1dab
57 changed files with 1736 additions and 1534 deletions

View File

@@ -219,7 +219,7 @@ void RakNetInstance::runEvents(NetEventCallback* callback)
int timeDiff = RakNet::GetTimeMS() - m_startedPingingAt;
if (timeDiff > 1000)
{
for (auto it = m_servers.begin(); it != m_servers.end(); )
for (std::vector<PingedCompatibleServer>::iterator it = m_servers.begin(); it != m_servers.end(); )
{
if (RakNet::GetTimeMS() - it->m_lastPinged <= 3000)
{