Skip to content

Commit

Permalink
Merge pull request #1906 from jefflongo/patch-1
Browse files Browse the repository at this point in the history
Update NetPlayServer.cpp
  • Loading branch information
Sonicadvance1 committed Jan 20, 2015
2 parents e72f70f + 6b64c30 commit e3cff62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/NetPlayServer.cpp
Expand Up @@ -48,7 +48,7 @@ void NetPlayServer::ThreadFunc()
while (m_do_loop)
{
// update pings every so many seconds
if ((m_ping_timer.GetTimeElapsed() > (10 * 1000)) || m_update_pings)
if ((m_ping_timer.GetTimeElapsed() > 1000) || m_update_pings)
{
//PanicAlertT("Sending pings");

Expand Down

0 comments on commit e3cff62

Please sign in to comment.