mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
increase tuning range
This commit is contained in:
parent
88efee49a1
commit
0da7aaa56e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue