diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index 3ba2c29e17..7c0a03df67 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -508,9 +508,13 @@ void ScreenEdit::UpdateTextInfo() } CString sText; - // MD 11/03/03 - check Editor.ini for a few of these + // check Editor.ini for a few of these // entries used: CurBeatPlaces, CurSecPlaces, OffsetPlaces, // PreviewStartPlaces, PreviewLengthPlaces + /* No need for that (unneeded options is just a maintenance pain). If you want + * more precision here, add it. I doubt there's a need for precise preview output, + * though (it'd be nearly inaudible at the millisecond level, and it's approximate + * anyway). */ sText += ssprintf( "Current Beat:\n %.2f\n", GAMESTATE->m_fSongBeat ); sText += ssprintf( "Current Second:\n %.2f\n", m_pSong->GetElapsedTimeFromBeat(GAMESTATE->m_fSongBeat) ); sText += ssprintf( "Snap to:\n %s\n", sNoteType.c_str() );