windows: move logs to log dir

This commit is contained in:
Megamouse 2025-01-02 17:42:05 +01:00
parent 451e953d26
commit a7edfa221e
6 changed files with 50 additions and 35 deletions

View file

@ -2676,8 +2676,8 @@ void main_window::CreateConnects()
return;
}
const std::string archived_path = fs::get_cache_dir() + "RPCS3.log.gz";
const std::string raw_file_path = fs::get_cache_dir() + "RPCS3.log";
const std::string archived_path = fs::get_log_dir() + "RPCS3.log.gz";
const std::string raw_file_path = fs::get_log_dir() + "RPCS3.log";
fs::stat_t raw_stat{};
fs::stat_t archived_stat{};