Fixup creating image path

This commit is contained in:
Nekotekina 2022-01-26 15:41:29 +03:00
parent 3a1082fe0d
commit 16aae4eb77
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace rsx
if (info->data != nullptr)
{
// Install the image to config dir
fs::create_path(image_path);
fs::create_path(fs::get_parent_dir(image_path));
fs::copy_file(src, image_path, true);
}
}