From ec9fc784697ded55ceb8cee77c7f58bb032ef4da Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Fri, 21 Mar 2025 02:15:41 -0700 Subject: [PATCH] Send back the HighScoreList for quint determination This can already be fetched via a profile, but this is way more convenient since it's already here. --- src/MusicWheelItem.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/MusicWheelItem.cpp b/src/MusicWheelItem.cpp index a01b9c0dc9..c0653d6565 100644 --- a/src/MusicWheelItem.cpp +++ b/src/MusicWheelItem.cpp @@ -383,6 +383,11 @@ void MusicWheelItem::RefreshGrades() { msg.SetParam( "Grade", pHSL->HighGrade ); msg.SetParam( "NumTimesPlayed", pHSL->GetNumTimesPlayed() ); + + // Until we get a Grade for quints (need W0 support), send back the entire + // HighScoreList so we can determine if a player has a quint or not. + // TODO: Remove this once we have W0 support. + msg.SetParam( "HighScoreList", pHSL ); } m_pGradeDisplay[p]->HandleMessage( msg ); }