Qt: don't mount dev_hdd0 in screenshot manager

This commit is contained in:
Megamouse 2023-04-28 13:24:19 +02:00
parent 5cf80c05a5
commit 6915025c7e
2 changed files with 2 additions and 5 deletions

View file

@ -81,11 +81,8 @@ void screenshot_manager_dialog::reload()
m_abort_parsing = true;
gui::utils::stop_future_watcher(m_parsing_watcher, true);
// Make sure the directory is mounted
vfs::mount("/dev_hdd0", rpcs3::utils::get_hdd0_dir());
const std::string screenshot_path_qt = fs::get_config_dir() + "screenshots/";
const std::string screenshot_path_cell = vfs::get("/dev_hdd0/photo/");
const std::string screenshot_path_cell = rpcs3::utils::get_hdd0_dir() + "/photo/";
m_flow_widget->clear();
m_abort_parsing = false;

View file

@ -1,6 +1,6 @@
#pragma once
#include "flow_widget.h";
#include "flow_widget.h"
#include <QDialog>
#include <QFutureWatcher>