make -1 visual delay actually be -1 instead of +1

This commit is contained in:
AJ Kelly
2011-01-15 17:31:30 -06:00
parent 2278169f60
commit 302cc6800c
+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) );
}