NetPlay: Change "Reduce Polling Rate" to poll twice per frame

Some games don't play nice when we poll only once per frame, so we'll poll twice instead.
This commit is contained in:
Techjar
2018-07-08 03:40:00 -04:00
parent 7b986c1b54
commit 38e67c0530
3 changed files with 12 additions and 11 deletions

View File

@ -123,8 +123,8 @@ void NetPlayDialog::CreateMainLayout()
m_md5_button->setMenu(menu);
m_reduce_polling_rate_box->setToolTip(
tr("This will reduce bandwidth usage, but may add up to one frame of additional latency, as "
"controllers will be polled only once per frame."));
tr("This will reduce bandwidth usage by polling GameCube controllers only twice per frame. "
"Does not affect Wii Remotes."));
m_main_layout->addWidget(m_game_button, 0, 0);
m_main_layout->addWidget(m_md5_button, 0, 1);