mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
Fix sample map struct
Structize sample map variable is for easily extend features.
This commit is contained in:
parent
a5959ae7b9
commit
4e8d71fc22
1 changed files with 1 additions and 1 deletions
|
@ -3022,7 +3022,7 @@ void FurnaceGUI::drawInsEdit() {
|
||||||
/*ImGui::TableNextColumn();
|
/*ImGui::TableNextColumn();
|
||||||
ImGui::Text("Frequency");*/
|
ImGui::Text("Frequency");*/
|
||||||
for (int i=0; i<120; i++) {
|
for (int i=0; i<120; i++) {
|
||||||
DivInstrumentAmiga::SampleMap sampleMap=ins->amiga.noteMap[i];
|
DivInstrumentAmiga::SampleMap& sampleMap=ins->amiga.noteMap[i];
|
||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
ImGui::PushID(fmt::sprintf("NM_%d",i).c_str());
|
ImGui::PushID(fmt::sprintf("NM_%d",i).c_str());
|
||||||
ImGui::TableNextColumn();
|
ImGui::TableNextColumn();
|
||||||
|
|
Loading…
Reference in a new issue