prepare more stuff

This commit is contained in:
tildearrow 2024-08-13 04:10:03 -05:00
parent 1bdcbf95d3
commit 45eab67fd4
5 changed files with 95 additions and 9 deletions

View file

@ -240,7 +240,18 @@ void FurnaceGUI::drawExportVGM(bool onWindow) {
}
void FurnaceGUI::drawExportROM(bool onWindow) {
exitDisabledTimer=1;
if (onWindow) {
ImGui::Separator();
if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup();
ImGui::SameLine();
}
if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) {
openFileDialog(GUI_FILE_EXPORT_ROM);
ImGui::CloseCurrentPopup();
}
}
void FurnaceGUI::drawExportZSM(bool onWindow) {