Skip to content

Commit

Permalink
Merge pull request dolphin-emu#8382 from tkln/verify-widget-switch-no…
Browse files Browse the repository at this point in the history
…ne-warn

VerifyWidget: Handle Severity::None case in Verify()
  • Loading branch information
stenzek authored Nov 8, 2019
2 parents 62f331d + 0dda920 commit 422c3f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinQt/Config/VerifyWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ void VerifyWidget::Verify()
case DiscIO::VolumeVerifier::Severity::High:
severity = tr("High");
break;
case DiscIO::VolumeVerifier::Severity::None:
break;
}

SetProblemCellText(i, 0, QString::fromStdString(problem.text));
Expand Down

0 comments on commit 422c3f7

Please sign in to comment.