bugfix for following bug:

"If you have a modifier, like say 2x, and then on the next song you pick C300 (i'd assume also for C200) the next songs scrolls at a constant 600 BPM XD. Same with .5x, the song on C300 will then scroll at 150."
This commit is contained in:
Andrew Wong
2003-08-09 21:19:59 +00:00
parent 3f942b5770
commit 0c1fa458c7
+2 -2
View File
@@ -282,8 +282,8 @@ void ScreenPlayerOptions::ExportOptions()
case 6: po.m_bTimeSpacing = false; po.m_fScrollSpeed = 3.0f; break;
case 7: po.m_bTimeSpacing = false; po.m_fScrollSpeed = 5.0f; break;
case 8: po.m_bTimeSpacing = false; po.m_fScrollSpeed = 8.0f; break;
case 9: po.m_bTimeSpacing = true; po.m_fScrollBPM = 200; break;
case 10:po.m_bTimeSpacing = true; po.m_fScrollBPM = 300; break;
case 9: po.m_bTimeSpacing = true; po.m_fScrollSpeed = 1.0f; po.m_fScrollBPM = 200; break;
case 10:po.m_bTimeSpacing = true; po.m_fScrollSpeed = 1.0f; po.m_fScrollBPM = 300; break;
default: ASSERT(0);
}