1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

cellVideoExport: export movies to /video/ instead of /movie

This commit is contained in:
Megamouse 2024-01-08 09:34:36 +01:00
parent 431d69ac87
commit 9e9385a877

View File

@ -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.