Change default netplay buffer to 5.

This commit is contained in:
Rachel Bryk 2014-08-26 21:50:30 -04:00
parent 75b9d6da48
commit 31353573cb
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ NetPlayServer::NetPlayServer(const u16 port) : is_connected(false), m_is_running
m_do_loop = true;
m_selector.Add(m_socket);
m_thread = std::thread(&NetPlayServer::ThreadFunc, this);
m_target_buffer_size = 20;
m_target_buffer_size = 5;
}
}