From f6b50e28e92a20f7f8eb9eb3249b7cde45c56cf5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 18 Jun 2007 23:33:32 +0000 Subject: [PATCH] persist changes to AssistTick by setting as preferred mods --- stepmania/src/ScreenDebugOverlay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenDebugOverlay.cpp b/stepmania/src/ScreenDebugOverlay.cpp index 473b6066d9..fe7411781b 100644 --- a/stepmania/src/ScreenDebugOverlay.cpp +++ b/stepmania/src/ScreenDebugOverlay.cpp @@ -575,9 +575,9 @@ class DebugLineAssist : public IDebugLine else b = !GAMESTATE->m_SongOptions.GetSong().m_bAssistClap; if( bHoldingShift ) - SO_GROUP_ASSIGN( GAMESTATE->m_SongOptions, ModsLevel_Song, m_bAssistMetronome, b ); + SO_GROUP_ASSIGN( GAMESTATE->m_SongOptions, ModsLevel_Preferred, m_bAssistMetronome, b ); else - SO_GROUP_ASSIGN( GAMESTATE->m_SongOptions, ModsLevel_Song, m_bAssistClap, b ); + SO_GROUP_ASSIGN( GAMESTATE->m_SongOptions, ModsLevel_Preferred, m_bAssistClap, b ); IDebugLine::DoAndMakeSystemMessage( sMessageOut ); }