From d66b45a1175c38e6927c59e158708c783d9eb212 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 19 Jan 2006 03:07:43 +0000 Subject: [PATCH] consistent precision for BPM and secs - 3 decimal places in the editor and in the song file --- 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 93de7746cc..73ff0945ff 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -1394,7 +1394,7 @@ void ScreenEdit::InputEdit( const InputEventPlus &input, EditButton EditB ) } if( EditIsBeingPressed( EDIT_BUTTON_ADJUST_FINE ) ) { - fDeltaBPM /= 2; + fDeltaBPM /= 20; // .001 bpm } else {