GUI: Allow memcard names shorter than 4

This commit is contained in:
refractionpcsx2 2022-06-21 21:16:07 +01:00
parent 9a323a9a8d
commit 8ec736789c
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ void CreateMemoryCardDialog::restoreDefaults()
void CreateMemoryCardDialog::updateState()
{
const bool okay = (m_ui.name->text().length() > 4);
const bool okay = (m_ui.name->text().length() > 0);
m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(okay);
#ifdef _WIN32