Changed Edit Mode to not add the global offset to the Current Second field. Updated changelog.

This commit is contained in:
Kyzentun Keeslala
2015-10-10 01:06:32 -06:00
parent 7a26044934
commit 66edc2d233
2 changed files with 43 additions and 1 deletions
+2 -1
View File
@@ -1866,7 +1866,8 @@ void ScreenEdit::UpdateTextInfo()
RString sText;
sText += ssprintf( CURRENT_BEAT_FORMAT.GetValue(), CURRENT_BEAT.GetValue().c_str(), GetBeat() );
sText += ssprintf( CURRENT_SECOND_FORMAT.GetValue(), CURRENT_SECOND.GetValue().c_str(), GetAppropriateTiming().GetElapsedTimeFromBeat(GetBeat()) );
float second= GetAppropriateTiming().GetElapsedTimeFromBeatNoOffset(GetBeat());
sText += ssprintf( CURRENT_SECOND_FORMAT.GetValue(), CURRENT_SECOND.GetValue().c_str(), second );
switch( EDIT_MODE.GetValue() )
{
DEFAULT_FAIL( EDIT_MODE.GetValue() );