Skip to content

Commit

Permalink
Merge pull request dolphin-emu#7975 from AdmiralCurtiss/memcard-manag…
Browse files Browse the repository at this point in the history
…er-filetypes

Don't enforce that a memory card has to have a .raw or .gcp file extension.
  • Loading branch information
Helios747 authored Aug 22, 2019
2 parents c7fc912 + 5614594 commit 3848f6d
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 3848f6d

Please sign in to comment.