Oops, I did it again.

...next time, come up with a better song title.
This commit is contained in:
Jason Felds
2011-01-16 02:14:28 -05:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -25,6 +25,7 @@ sm-ssc v1.2.1 | 2011011?
* [NoteField] Allow for adjustable fade fail time (for AJ). [Wolfman2000]
* [MenuTimer] Allow the hurry up transition to be adjusted. [Wolfman2000]
* [MusicWheel] Added RouletteColor, RandomColor, and PortalColor metrics. [freem]
* Fix a bug with VisualDelaySeconds where choosing -1 would lead to it being +1. [freem]
20110112
--------
+1 -1
View File
@@ -610,7 +610,7 @@ static void SoundVolumeAttract( int &sel, bool ToSel, const ConfOption *pConfOpt
static void VisualDelaySeconds( int &sel, bool ToSel, const ConfOption *pConfOption )
{
const float mapping[] = { -0.125f,-0.1f,-0.075f,-0.05f,0.025f,0.0f,0.025f,0.05f,0.075f,0.1f,0.125f };
const float mapping[] = { -0.125f,-0.1f,-0.075f,-0.05f,-0.025f,0.0f,0.025f,0.05f,0.075f,0.1f,0.125f };
MoveMap( sel, pConfOption, ToSel, mapping, ARRAYLEN(mapping) );
}