mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Disable reporting when game id is missing.
We can't track compatibility without a game id. That either means inventing one for homebrew (one that is consistent for all copies) or not reporting homebrew.
This commit is contained in:
parent
5da0375ee9
commit
677693b764
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,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()) {
|
||||
if (Reporting::IsEnabled() && gameId.size() && gameId != "_") {
|
||||
I18NCategory *rp = GetI18NCategory("Reporting");
|
||||
rightColumnItems->Add(new Choice(rp->T("ReportButton", "Report Feedback")))->OnClick.Handle(this, &GamePauseScreen::OnReportFeedback);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue