From 2438865137b1fea60c4e41e0846256e5a281ebe8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 21 Jul 2005 00:44:18 +0000 Subject: [PATCH] snap to where we started playing if we exit play/record by finishing the region (not jumping to the possibly irrelevant selection) --- stepmania/src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index 616fb42cb9..49af78fd53 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -826,7 +826,7 @@ void ScreenEdit::Update( float fDeltaTime ) if( GAMESTATE->m_fSongBeat > NoteRowToBeat(m_iStopPlayingAt) ) { TransitionEditState( STATE_EDITING ); - GAMESTATE->m_fSongBeat = NoteRowToBeat( m_NoteFieldEdit.m_iEndMarker ); + GAMESTATE->m_fSongBeat = NoteRowToBeat( m_iStartPlayingAt ); } }