Merge pull request #7931 from spycrab/buffer_change_buffer

Qt/NetPlayDialog: Change buffer size message color
This commit is contained in:
spycrab 2019-03-25 10:12:48 +01:00 committed by GitHub
commit 8bad3f93f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -858,7 +858,7 @@ void NetPlayDialog::OnPadBufferChanged(u32 buffer)
DisplayMessage(m_host_input_authority && !IsHosting() ?
tr("Max buffer size changed to %1").arg(buffer) :
tr("Buffer size changed to %1").arg(buffer),
"yellow");
"darkcyan");
m_buffer_size = static_cast<int>(buffer);
}