Qt/NetPlayDialog: Change buffer size message color

This commit is contained in:
spycrab 2019-03-25 10:00:38 +01:00
parent 20999db93c
commit fdb8b4af13
1 changed files with 1 additions and 1 deletions

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);
}