From 4c23ea5e5411b4e313a3393a7b7928c64907c204 Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 13 Jul 2024 19:41:38 -0400 Subject: [PATCH] fix open project menu --- src/app/editor/master_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/editor/master_editor.cc b/src/app/editor/master_editor.cc index 84c737dc..3857af41 100644 --- a/src/app/editor/master_editor.cc +++ b/src/app/editor/master_editor.cc @@ -413,8 +413,8 @@ void MasterEditor::DrawYazeMenu() { ImGui::Text("ROM: %s", current_project_.rom_filename_.c_str()); ImGui::Text("Labels: %s", current_project_.labels_filename_.c_str()); ImGui::Text("Code: %s", current_project_.code_folder_.c_str()); + ImGui::EndMenu(); } - ImGui::EndMenu(); } DrawHelpMenu();