Skip to content

Commit

Permalink
UI: Tweak the NAND check popup message
Browse files Browse the repository at this point in the history
Inform the user that re-launching titles can also fix the issues.
  • Loading branch information
leoetlino committed Nov 2, 2017
1 parent 1cd4be1 commit cb0d168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/DolphinQt2/MenuBar.cpp
Expand Up @@ -564,6 +564,7 @@ void MenuBar::CheckNAND()
QStringLiteral("%1").arg(title_id, 16, 16, QLatin1Char('0'));
message += QStringLiteral("\n");
}
message += tr("\nLaunching these titles may also fix the issues.");
}

if (QMessageBox::question(this, tr("NAND Check"), message) != QMessageBox::Yes)
Expand Down
1 change: 1 addition & 0 deletions Source/Core/DolphinWX/FrameTools.cpp
Expand Up @@ -1338,6 +1338,7 @@ void CFrame::OnCheckNAND(wxCommandEvent&)
StringFromFormat("%016" PRIx64, title_id);
message += "\n";
}
message += _("\nLaunching these titles may also fix the issues.");
}

if (wxMessageBox(message, _("NAND Check"), wxYES_NO) != wxYES)
Expand Down

0 comments on commit cb0d168

Please sign in to comment.