mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-02 02:52:40 +00:00
make a member of FurnaceGUI
This commit is contained in:
parent
594eb55942
commit
96ad124100
3 changed files with 6 additions and 2 deletions
|
@ -31,7 +31,6 @@ void FurnaceGUI::drawExport() {
|
|||
if (ImGui::BeginChild("sysPickerC",avail,false,ImGuiWindowFlags_NoScrollWithMouse|ImGuiWindowFlags_NoScrollbar)) {
|
||||
if (ImGui::BeginTabBar("ExportTypes")) {
|
||||
if (ImGui::BeginTabItem("Audio")) {
|
||||
static int audioExportType=0;
|
||||
ImGui::RadioButton("one file",&audioExportType,0);
|
||||
ImGui::RadioButton("multiple files (one per chip)",&audioExportType,1);
|
||||
ImGui::RadioButton("multiple files (one per channel)",&audioExportType,2);
|
||||
|
|
|
@ -7688,7 +7688,9 @@ FurnaceGUI::FurnaceGUI():
|
|||
introSkipDo(false),
|
||||
introStopped(false),
|
||||
curTutorial(-1),
|
||||
curTutorialStep(0) {
|
||||
curTutorialStep(0),
|
||||
//audio export types (export options)
|
||||
audioExportType(0) {
|
||||
// value keys
|
||||
valueKeys[SDLK_0]=0;
|
||||
valueKeys[SDLK_1]=1;
|
||||
|
|
|
@ -2267,6 +2267,9 @@ class FurnaceGUI {
|
|||
// tutorial
|
||||
int curTutorial, curTutorialStep;
|
||||
|
||||
//audio export types (export options)
|
||||
int audioExportType;
|
||||
|
||||
void drawSSGEnv(unsigned char type, const ImVec2& size);
|
||||
void drawWaveform(unsigned char type, bool opz, const ImVec2& size);
|
||||
void drawAlgorithm(unsigned char alg, FurnaceGUIFMAlgs algType, const ImVec2& size);
|
||||
|
|
Loading…
Reference in a new issue