Prompt for reporting even when disabled.

To improve visibility.
This commit is contained in:
Unknown W. Brackets 2016-06-12 10:33:33 -07:00
parent 2ceee79324
commit 85e7980c44
5 changed files with 56 additions and 13 deletions

View file

@ -333,7 +333,7 @@ void GamePauseScreen::CreateViews() {
// TODO, also might be nice to show overall compat rating here?
// Based on their platform or even cpu/gpu/config. Would add an API for it.
if (Reporting::IsEnabled() && gameId.size() && gameId != "_") {
if (Reporting::IsSupported() && gameId.size() && gameId != "_") {
I18NCategory *rp = GetI18NCategory("Reporting");
rightColumnItems->Add(new Choice(rp->T("ReportButton", "Report Feedback")))->OnClick.Handle(this, &GamePauseScreen::OnReportFeedback);
}