diff --git a/soh/soh/SohMenuBar.cpp b/soh/soh/SohMenuBar.cpp index f2f62c1cf..f129e0118 100644 --- a/soh/soh/SohMenuBar.cpp +++ b/soh/soh/SohMenuBar.cpp @@ -156,6 +156,12 @@ void DrawShipMenu() { } #if !defined(__SWITCH__) && !defined(__WIIU__) UIWidgets::Spacer(0); + if (ImGui::MenuItem("Open App Files Folder")) { + std::string filesPath = LUS::Context::GetInstance()->GetAppDirectoryPath(); + SDL_OpenURL(std::string("file:///" + std::filesystem::absolute(filesPath).string()).c_str()); + } + UIWidgets::Spacer(0); + if (ImGui::MenuItem("Quit")) { LUS::Context::GetInstance()->GetWindow()->Close(); }