diff --git a/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp b/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp index 6ca4ec378d..b8c92ff8b6 100644 --- a/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp @@ -145,8 +145,7 @@ void GameDigestDialog::SetResult(int pid, const std::string& result) auto client = Settings::Instance().GetNetPlayClient(); if (client && m_results.size() >= client->GetPlayers().size()) { - if (std::adjacent_find(m_results.begin(), m_results.end(), std::not_equal_to<>()) == - m_results.end()) + if (std::ranges::adjacent_find(m_results, std::ranges::not_equal_to{}) == m_results.end()) { m_check_label->setText(tr("The hashes match!")); }