From 0da7aaa56e3b7c5269e8b4dbe30ce3506ab080f7 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 31 Jan 2022 12:55:33 -0500 Subject: [PATCH] increase tuning range --- src/gui/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 2fe1e460..1a8508b7 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -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; } }