Fix: Marvelous timing in menus. Note: We didn't notice this bug because if we don't edit it, it will remain at 2.

This commit is contained in:
Charles Lohr
2005-02-13 07:27:25 +00:00
parent a4fc150692
commit e274d0f569
+6 -1
View File
@@ -281,11 +281,16 @@ static void WheelSpeed( int &sel, bool ToSel, const ConfOption *pConfOption )
/* Gameplay options */
MOVE( SoloSingles, PREFSMAN->m_bSoloSingle );
MOVE( EasterEggs, PREFSMAN->m_bEasterEggs );
MOVE( MarvelousTiming, PREFSMAN->m_iMarvelousTiming );
MOVE( AllowExtraStage, PREFSMAN->m_bAllowExtraStage );
MOVE( PickExtraStage, PREFSMAN->m_bPickExtraStage );
MOVE( UnlockSystem, PREFSMAN->m_bUseUnlockSystem );
static void MarvelousTiming( int &sel, bool ToSel, const ConfOption *pConfOption )
{
const int mapping[] = { 0, 1, 2 };
MoveMap( sel, PREFSMAN->m_iMarvelousTiming, ToSel, mapping, ARRAYSIZE(mapping) );
}
static void CoinModeM( int &sel, bool ToSel, const ConfOption *pConfOption )
{
const CoinMode mapping[] = { COIN_HOME, COIN_PAY, COIN_FREE };