VGM export: explain what are these options for

This commit is contained in:
tildearrow 2025-05-06 15:24:51 -05:00
parent defbeae704
commit aadef2d545

View file

@ -228,9 +228,15 @@ void FurnaceGUI::drawExportVGM(bool onWindow) {
if (ImGui::RadioButton(_("data blocks"),!vgmExportDPCM07)) { if (ImGui::RadioButton(_("data blocks"),!vgmExportDPCM07)) {
vgmExportDPCM07=false; vgmExportDPCM07=false;
} }
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("67 66 C2 - writes a new data block on each bank switch.\nmay result in bigger files but is compatible with all players."));
}
if (ImGui::RadioButton(_("RAM write commands"),vgmExportDPCM07)) { if (ImGui::RadioButton(_("RAM write commands"),vgmExportDPCM07)) {
vgmExportDPCM07=true; vgmExportDPCM07=true;
} }
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("67 66 07 - uses RAM write commands (68) to switch banks.\nnot all VGM players support this!"));
}
} }
if (hasOneAtLeast) { if (hasOneAtLeast) {