Skip to content
Permalink
Browse files
Merge pull request #7975 from AdmiralCurtiss/memcard-manager-filetypes
Don't enforce that a memory card has to have a .raw or .gcp file extension.
  • Loading branch information
Helios747 committed Aug 22, 2019
2 parents c7fc912 + 5614594 commit 3848f6d
Showing 1 changed file with 1 addition and 1 deletion.
@@ -268,7 +268,7 @@ void GCMemcardManager::SetSlotFileInteractive(int slot)
this,
slot == 0 ? tr("Set memory card file for Slot A") : tr("Set memory card file for Slot B"),
QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
tr("GameCube Memory Cards (*.raw *.gcp)")));
tr("GameCube Memory Cards (*.raw *.gcp)") + QStringLiteral(";;") + tr("All Files (*)")));
if (!path.isEmpty())
m_slot_file_edit[slot]->setText(path);
}

0 comments on commit 3848f6d

Please sign in to comment.