increase tuning range

This commit is contained in:
tildearrow 2022-01-31 12:55:33 -05:00
parent 88efee49a1
commit 0da7aaa56e
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ void FurnaceGUI::drawSongInfo() {
ImGui::SetNextItemWidth(120.0f*dpiScale);
if (ImGui::InputFloat("##Tuning",&tune,1.0f,3.0f,"%g")) {
if (tune<220.0f) tune=220.0f;
if (tune>660.0f) tune=660.0f;
if (tune>880.0f) tune=880.0f;
e->song.tuning=tune;
}
}