summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/FrameTools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinWX/FrameTools.cpp')
-rw-r--r--Source/Core/DolphinWX/FrameTools.cpp9
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});
}