From 72b03025ac4ef0d8633c2f3e55b513cd149c59e5 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 12 Oct 2017 21:21:49 -0400 Subject: Remove lots more 3DS-specific code. --- src/citra_qt/main.cpp | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'src/citra_qt/main.cpp') diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 8adbcfe86..943aee30d 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -39,7 +39,6 @@ #include "common/scope_exit.h" #include "common/string_util.h" #include "core/core.h" -#include "core/file_sys/archive_source_sd_savedata.h" #include "core/gdbstub/gdbstub.h" #include "core/loader/loader.h" #include "core/settings.h" @@ -541,18 +540,7 @@ void GMainWindow::OnGameListLoadFile(QString game_path) { } void GMainWindow::OnGameListOpenSaveFolder(u64 program_id) { - std::string sdmc_dir = FileUtil::GetUserPath(D_SDMC_IDX); - std::string path = FileSys::ArchiveSource_SDSaveData::GetSaveDataPathFor(sdmc_dir, program_id); - QString qpath = QString::fromStdString(path); - - QDir dir(qpath); - if (!dir.exists()) { - QMessageBox::critical(this, tr("Error Opening Save Folder"), tr("Folder does not exist!")); - return; - } - - LOG_INFO(Frontend, "Opening save data path for program_id=%" PRIu64, program_id); - QDesktopServices::openUrl(QUrl::fromLocalFile(qpath)); + UNIMPLEMENTED(); } void GMainWindow::OnMenuLoadFile() { -- cgit v1.2.3