From d8363395e3eda799ce627c6fe7676039638db89c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 27 Sep 2003 03:24:03 +0000 Subject: [PATCH] use ModeChoice::IsPlayable --- stepmania/src/ScreenSelectDifficultyEX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenSelectDifficultyEX.cpp b/stepmania/src/ScreenSelectDifficultyEX.cpp index 09f1f9f9be..ee70320585 100644 --- a/stepmania/src/ScreenSelectDifficultyEX.cpp +++ b/stepmania/src/ScreenSelectDifficultyEX.cpp @@ -190,7 +190,7 @@ void ScreenSelectDifficultyEX::UpdateSelectableChoices() { /* If the icon is text, use a dimmer diffuse, or we won't be * able to see the glow. */ - if( GAMESTATE->IsPlayable(m_ModeChoices[i]) ) + if( m_ModeChoices[i].IsPlayable() ) { m_sprInfo[p].SetDiffuse( RageColor(1,1,1,1) ); m_sprPicture[p].SetDiffuse( RageColor(1,1,1,1) );