From a18b46d8ad91c5345638696f57508b99fd88bac1 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sat, 3 Dec 2022 19:57:37 +0200 Subject: [PATCH] Path hotfix --- rpcs3/Emu/System.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index e78d391a62..a37682f556 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -422,9 +422,9 @@ void Emulator::Init(bool add_only) make_path_verbose(fs::get_config_dir() + "sounds/"); make_path_verbose(patch_engine::get_patches_path()); - if (const std::string games_common = fs::get_config_dir() + "/games"; make_path_verbose(games_common)) + if (const std::string games_common = fs::get_config_dir() + "/games/"; make_path_verbose(games_common)) { - fs::write_file(user_path + "/Disc Games Can Be Put Here For Automatic Detection.txt", fs::create + fs::excl + fs::write, ""s); + fs::write_file(games_common + "/Disc Games Can Be Put Here For Automatic Detection.txt", fs::create + fs::excl + fs::write, ""s); } if (add_only)