m_bShowCaution and m_bEventMode to Preference

This commit is contained in:
Glenn Maynard
2005-01-30 01:36:20 +00:00
parent 795380601b
commit 25f50a20b7
3 changed files with 8 additions and 11 deletions
+2 -2
View File
@@ -233,7 +233,7 @@ static void MovePref( int &iSel, bool bToSel, const ConfOption *pConfOption )
/* Appearance options */
MOVE( Instructions, PREFSMAN->m_bShowInstructions );
MOVE( Caution, PREFSMAN->m_bShowCaution );
MOVE( Caution, (bool&) PREFSMAN->m_bShowCaution );
MOVE( OniScoreDisplay, PREFSMAN->m_bDancePointsForOni );
MOVE( SongGroup, PREFSMAN->m_bShowSelectGroup );
MOVE( WheelSections, PREFSMAN->m_MusicWheelUsesSections );
@@ -311,7 +311,7 @@ static void SongsPerPlay( int &sel, bool ToSel, const ConfOption *pConfOption )
const int mapping[] = { 1,2,3,4,5,6,7 };
MoveMap( sel, PREFSMAN->m_iNumArcadeStages, ToSel, mapping, ARRAYSIZE(mapping) );
}
MOVE( EventMode, PREFSMAN->m_bEventMode );
MOVE( EventMode, (bool&) PREFSMAN->m_bEventMode );
/* Machine options */
MOVE( ScoringType, PREFSMAN->m_iScoringType );