From aadef2d5451acac1a70f802a1fadd2343d101bf5 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Tue, 6 May 2025 15:24:51 -0500 Subject: [PATCH] VGM export: explain what are these options for --- src/gui/exportOptions.cpp | 6 ++++++ 1 file changed, 6 insertions(+) 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) {