From 09305639aed1b8fc553800b6e8e09aefc3b57647 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 6 Jun 2011 21:41:24 -0400 Subject: [PATCH] Let AutoSetStyle select all charts in the game. --- src/MusicWheel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MusicWheel.cpp b/src/MusicWheel.cpp index 77303f5286..e8e4c76353 100644 --- a/src/MusicWheel.cpp +++ b/src/MusicWheel.cpp @@ -969,7 +969,7 @@ void MusicWheel::FilterWheelItemDatas(vector &aUnFilteredD } /* If the song has no steps for the current style, remove it. */ - if( !pSong->HasStepsType(GAMESTATE->GetCurrentStyle()->m_StepsType) ) + if( !CommonMetrics::AUTO_SET_STYLE && !pSong->HasStepsType(GAMESTATE->GetCurrentStyle()->m_StepsType) ) { aiRemove[i] = true; continue;