release v0.5.7 (for real this time)
also fix oscilloscope and add layout reset option
This commit is contained in:
parent
61253d4558
commit
721445cf07
3 changed files with 53 additions and 13 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue