Skip to content

Commit

Permalink
Merge pull request #8368 from rukai/fix_window_title
Browse files Browse the repository at this point in the history
Fix import gc save file window title
  • Loading branch information
JosJuice committed Sep 24, 2019
2 parents edfb0f6 + dbc0bf0 commit e28fccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/GCMemcardManager.cpp
Expand Up @@ -332,7 +332,7 @@ void GCMemcardManager::ExportAllFiles()
void GCMemcardManager::ImportFile()
{
QString path = QFileDialog::getOpenFileName(
this, tr("Export Save File"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
this, tr("Import Save File"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
tr("Native GCI File (*.gci)") + QStringLiteral(";;") + tr("MadCatz Gameshark files(*.gcs)") +
QStringLiteral(";;") + tr("Datel MaxDrive/Pro files(*.sav)"));

Expand Down

0 comments on commit e28fccf

Please sign in to comment.