release v0.5.7 (for real this time)

also fix oscilloscope and add layout reset option
This commit is contained in:
tildearrow 2022-02-22 02:01:59 -05:00
parent 61253d4558
commit 721445cf07
3 changed files with 53 additions and 13 deletions

View file

@ -693,7 +693,8 @@ void FurnaceGUI::drawInsEdit() {
ImGui::InputText("Name",&ins->name);
if (ins->type<0 || ins->type>22) ins->type=DIV_INS_FM;
int insType=ins->type;
if (ImGui::Combo("Type",&insType,insTypes,23)) {
// TODO: set to 23 for 0.6
if (ImGui::Combo("Type",&insType,insTypes,10)) {
ins->type=(DivInstrumentType)insType;
}