mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 06:53:01 +00:00
Inst type combo box shows all the instruments
This commit is contained in:
parent
101e2c4383
commit
577c281a17
1 changed files with 1 additions and 1 deletions
|
@ -730,7 +730,7 @@ void FurnaceGUI::drawInsEdit() {
|
|||
ImGui::InputText("Name",&ins->name);
|
||||
if (ins->type<0 || ins->type>23) ins->type=DIV_INS_FM;
|
||||
int insType=ins->type;
|
||||
if (ImGui::Combo("Type",&insType,insTypes,24)) {
|
||||
if (ImGui::Combo("Type",&insType,insTypes,24,24)) {
|
||||
ins->type=(DivInstrumentType)insType;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue