diff --git a/stepmania/src/OptionRow.h b/stepmania/src/OptionRow.h index d3e41ffd23..10e9270023 100644 --- a/stepmania/src/OptionRow.h +++ b/stepmania/src/OptionRow.h @@ -42,15 +42,6 @@ struct OptionRowDefinition set m_vEnabledForPlayers; // only players in this set may change focus to this row bool m_bExportOnChange; - void UpdateEnabledForPlayers( - set vEnabledForPlayers, - bool bThisRowIsSelected, - bool bThisRowIsSelectedByAll, - const RageColor &colorSelected, - const RageColor &colorNotSelected, - const RageColor &colorDisabled, - float fTweenSeconds - ); bool EnabledForPlayer( PlayerNumber pn ) { return m_vEnabledForPlayers.find(pn) != m_vEnabledForPlayers.end(); } OptionRowDefinition() { Init(); } @@ -204,7 +195,7 @@ protected: ThemeMetric COLOR_DISABLED; ThemeMetric CAPITALIZE_ALL_OPTION_NAMES; ThemeMetric SHOW_UNDERLINES; - ThemeMetric TWEEN_SECONDS; + ThemeMetric TWEEN_SECONDS; }; #endif