mirror of https://github.com/PCSX2/pcsx2.git
Memory cards: Update error message
Co-Authored-By: Christian Kenny <16314399+MrCK1@users.noreply.github.com>
This commit is contained in:
parent
734cfb8966
commit
6e7c6c205c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue