fix speed line

This commit is contained in:
Glenn Maynard
2006-02-18 03:18:58 +00:00
parent 35599d7f97
commit 30bc09ee74
+9
View File
@@ -255,6 +255,15 @@ public:
const GameCommand &gc = m_aListEntries[iChoice];
return gc.m_sScreen;
}
virtual bool Reload()
{
// HACK: always reload "speed", to update the BPM text in the name of the speed line
if( !m_Def.m_sName.CompareNoCase("speed") )
return true;
return OptionRowHandler::Reload();
}
};
class OptionRowHandlerListNoteSkins : public OptionRowHandlerList