small cleanup

main
Georg Krause 2018-04-02 22:12:27 +02:00
parent 56fcb8a7c0
commit bcd64ca9c7
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ void TimeManager::setBpm(float bpm)
void TimeManager::setBpmZeroOne(float b)
{
setBpm( b * (MAX_TEMPO - MIN_TEMPO) + MIN_TEMPO ); // 60 - 220
setBpm( b * (MAX_TEMPO - MIN_TEMPO) + MIN_TEMPO ); // MIN_TEMPO - MAX_TEMPO
}