From c1b62874379576ccf2262d45cc995db94fedebd1 Mon Sep 17 00:00:00 2001 From: Yorunokyujitsu <164279972+Yorunokyujitsu@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:21:52 +0900 Subject: [PATCH] Added the missing parentheses. --- sphaira/source/ui/menus/filebrowser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphaira/source/ui/menus/filebrowser.cpp b/sphaira/source/ui/menus/filebrowser.cpp index aabbebf..74647f4 100644 --- a/sphaira/source/ui/menus/filebrowser.cpp +++ b/sphaira/source/ui/menus/filebrowser.cpp @@ -1805,7 +1805,7 @@ void FsView::DisplayOptions() { options->Add("Extract to..."_i18n, [this](){ std::string out; - if (R_SUCCEEDED(swkbd::ShowText(out, "Extract path", "Enter the path to the folder to extract into"_i18n.c_str, fs::AppendPath(m_path, ""))) && !out.empty()) { + if (R_SUCCEEDED(swkbd::ShowText(out, "Extract path", "Enter the path to the folder to extract into"_i18n.c_str(), fs::AppendPath(m_path, ""))) && !out.empty()) { UnzipFiles(out); } }); @@ -1823,7 +1823,7 @@ void FsView::DisplayOptions() { options->Add("Compress to..."_i18n, [this](){ std::string out; - if (R_SUCCEEDED(swkbd::ShowText(out, "Compress path", "Enter the path to the folder to compress into"_i18n.c_str, m_path)) && !out.empty()) { + if (R_SUCCEEDED(swkbd::ShowText(out, "Compress path", "Enter the path to the folder to compress into"_i18n.c_str(), m_path)) && !out.empty()) { ZipFiles(out); } });