(Qt) Fix setting value size (#17332)

This commit is contained in:
Viačasłaŭ 2025-01-02 14:58:30 +03:00 committed by GitHub
parent 7161069cfc
commit 0dcf196ee3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -454,7 +454,7 @@ StringComboBox::StringComboBox(rarch_setting_t *setting, QWidget *parent) :
void StringComboBox::onCurrentTextChanged(const QString &text)
{
strlcpy(m_value, text.toUtf8().data(), sizeof(m_value));
strlcpy(m_value, text.toUtf8().data(), m_setting->size);
setting_generic_handle_change(m_setting);
}