diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-12-02 09:49:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-02 09:49:22 -0800 |
| commit | d71f4168e94f1ced736461bd62ec39e46be3c78f (patch) | |
| tree | 78a65c21b458d3554c185ff9bbe12994331232f0 /Source/Core/DolphinWX/FrameTools.cpp | |
| parent | c48ccdb1cd7a67fc992d192370cb1c03c6ee874e (diff) | |
| parent | c4db59e7b6b2a5ac7f265e4362d54ba1fa633526 (diff) | |
Merge pull request #6229 from JosJuice/clarify-keys-dump
Clarify the "Select the OTP/SEEPROM dump" message
Diffstat (limited to 'Source/Core/DolphinWX/FrameTools.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 3c6e21386a..bf1072b68c 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -1306,10 +1306,11 @@ void CFrame::OnImportBootMiiBackup(wxCommandEvent& WXUNUSED(event)) DiscIO::NANDImporter().ImportNANDBin( file_name, [&dialog] { dialog.Pulse(); }, [this] { - return WxStrToStr(wxFileSelector( - _("Select the OTP/SEEPROM dump"), wxEmptyString, wxEmptyString, wxEmptyString, - _("BootMii OTP/SEEPROM dump (*.bin)") + "|*.bin|" + wxGetTranslation(wxALL_FILES), - wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this)); + return WxStrToStr(wxFileSelector(_("Select the keys file (OTP/SEEPROM dump)"), + wxEmptyString, wxEmptyString, wxEmptyString, + _("BootMii keys file (*.bin)") + "|*.bin|" + + wxGetTranslation(wxALL_FILES), + wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this)); }); wxPostEvent(GetMenuBar(), wxCommandEvent{DOLPHIN_EVT_UPDATE_LOAD_WII_MENU_ITEM}); } |
