From 9e9385a877e4f2cdd1885af1cbedb120eda6cb20 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 8 Jan 2024 09:34:36 +0100 Subject: [PATCH] cellVideoExport: export movies to /video/ instead of /movie --- rpcs3/Emu/Cell/Modules/cellVideoExport.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp b/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp index a19d1f2de9..e4cd9735de 100644 --- a/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp @@ -113,7 +113,9 @@ bool check_movie_path(const std::string& file_path) std::string get_available_movie_path(const std::string& filename) { - const std::string movie_dir = "/dev_hdd0/movie/"; + // TODO: Find out how to build this path properly. Apparently real hardware doesn't add a suffix, + // but just randomly puts each video into a separate 2-Letter subdirectory like /video/hd/ or /video/ee/ + const std::string movie_dir = "/dev_hdd0/video/"; std::string dst_path = vfs::get(movie_dir + filename); // Do not overwrite existing files. Add a suffix instead.