From b94872cf4ed26abb2f842a5b669a4f7cd79b6ade Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 14 Jun 2003 22:58:21 +0000 Subject: [PATCH] fix assist tick turning off between songs in a course --- stepmania/src/ScreenGameplay.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index f9dbf935fa..58699ce1e7 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1149,6 +1149,9 @@ void ScreenGameplay::Input( const DeviceInput& DeviceI, const InputEventType typ break; case SDLK_F7: GAMESTATE->m_SongOptions.m_bAssistTick ^= 1; + + /* Store this change, so it sticks if we change songs: */ + GAMESTATE->m_StoredSongOptions.m_bAssistTick = GAMESTATE->m_SongOptions.m_bAssistTick; m_textDebug.SetText( ssprintf("Assist Tick is %s", GAMESTATE->m_SongOptions.m_bAssistTick?"ON":"OFF") ); m_textDebug.SetDiffuse( RageColor(1,1,1,1) );