GUI: add TIunA export options in classic mode
This commit is contained in:
parent
76f81f3ba4
commit
7a6e41f482
|
|
@ -4281,6 +4281,19 @@ bool FurnaceGUI::loop() {
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
bool hasTiunaCompat=false;
|
||||||
|
for (int i=0; i<e->song.systemLen; i++) {
|
||||||
|
if (e->song.system[i]==DIV_SYSTEM_TIA) {
|
||||||
|
hasTiunaCompat=true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (hasTiunaCompat) {
|
||||||
|
if (ImGui::BeginMenu(_("export TIunA..."))) {
|
||||||
|
drawExportTiuna();
|
||||||
|
ImGui::EndMenu();
|
||||||
|
}
|
||||||
|
}
|
||||||
int numAmiga=0;
|
int numAmiga=0;
|
||||||
for (int i=0; i<e->song.systemLen; i++) {
|
for (int i=0; i<e->song.systemLen; i++) {
|
||||||
if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++;
|
if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++;
|
||||||
|
|
@ -4322,6 +4335,19 @@ bool FurnaceGUI::loop() {
|
||||||
displayExport=true;
|
displayExport=true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
bool hasTiunaCompat=false;
|
||||||
|
for (int i=0; i<e->song.systemLen; i++) {
|
||||||
|
if (e->song.system[i]==DIV_SYSTEM_TIA) {
|
||||||
|
hasTiunaCompat=true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (hasTiunaCompat) {
|
||||||
|
if (ImGui::MenuItem(_("export TIunA..."))) {
|
||||||
|
curExportType=GUI_EXPORT_TIUNA;
|
||||||
|
displayExport=true;
|
||||||
|
}
|
||||||
|
}
|
||||||
int numAmiga=0;
|
int numAmiga=0;
|
||||||
for (int i=0; i<e->song.systemLen; i++) {
|
for (int i=0; i<e->song.systemLen; i++) {
|
||||||
if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++;
|
if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue