Skip to content

Commit

Permalink
Memory cards: Update error message
Browse files Browse the repository at this point in the history
Co-Authored-By: Christian Kenny <[email protected]>
  • Loading branch information
2 people authored and refractionpcsx2 committed Feb 10, 2024
1 parent 734cfb8 commit 6e7c6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-qt/Settings/MemoryCardSettingsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 6e7c6c2

Please sign in to comment.