Memory cards: Update error message

Co-Authored-By: Christian Kenny <16314399+MrCK1@users.noreply.github.com>
This commit is contained in:
Mrlinkwii 2024-02-10 17:21:15 +00:00 committed by refractionpcsx2
parent 734cfb8966
commit 6e7c6c205c
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ void MemoryCardSettingsWidget::tryInsertCard(u32 slot, const QString& newCard)
if (std::none_of(
mcds.begin(), mcds.end(), [&newCardStr](const AvailableMcdInfo& mcd) { return mcd.name == newCardStr; }))
{
QMessageBox::critical(this, tr("Error"), tr("This Memory Card is unknown."));
QMessageBox::critical(this, tr("Error"), tr("This Memory Card cannot be recognized or is not a valid file type."));
return;
}