add iPod and GRUB bootloader beeper tune export (#2441)

This commit is contained in:
AnnoyedArt1256 2025-06-15 01:29:59 +03:00 committed by GitHub
parent 24b629c73c
commit 055266090a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 522 additions and 0 deletions

View file

@ -371,6 +371,16 @@ void FurnaceGUI::drawExportROM(bool onWindow) {
}
break;
}
case DIV_ROM_GRUB: {
bool grubExportBin=romConfig.getBool("exportBin",false);
if (ImGui::Checkbox(_("export binary file"),&grubExportBin)) {
altered=true;
}
if (altered) {
romConfig.set("exportBin",grubExportBin);
}
break;
}
case DIV_ROM_ABSTRACT:
ImGui::TextWrapped("%s",_("select a target from the menu at the top of this dialog."));
break;