diff --git a/src/gui/exportOptions.cpp b/src/gui/exportOptions.cpp index 46ad0a957..6815b1039 100644 --- a/src/gui/exportOptions.cpp +++ b/src/gui/exportOptions.cpp @@ -228,9 +228,15 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { if (ImGui::RadioButton(_("data blocks"),!vgmExportDPCM07)) { 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)) { 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) {