prepare for unified ins/wave/sample list

This commit is contained in:
tildearrow 2022-03-13 23:37:25 -05:00
parent 71702ee595
commit 394a440f3d
1 changed files with 5 additions and 0 deletions

View File

@ -408,6 +408,11 @@ void FurnaceGUI::drawSettings() {
settings.macroView=macroViewB;
}
bool unifiedDataViewB=settings.unifiedDataView;
if (ImGui::Checkbox("Unified instrument/wavetable/sample list",&unifiedDataViewB)) {
settings.unifiedDataView=unifiedDataViewB;
}
bool chipNamesB=settings.chipNames;
if (ImGui::Checkbox("Use chip names instead of system names",&chipNamesB)) {
settings.chipNames=chipNamesB;