Skip to content

Commit

Permalink
Qt/GCMemcardManager: Add an 'All Files' option to the filetype select…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
AdmiralCurtiss committed Aug 22, 2019
1 parent c7fc912 commit 5614594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/GCMemcardManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5614594

Please sign in to comment.