Fix origin paths on windows

This commit is contained in:
Philip Kristoffersen
2022-04-13 10:12:39 +02:00
parent fc40457645
commit 4fb28b3f24
+1 -1
View File
@@ -175,7 +175,7 @@ fn get_default_locations() -> OriginPathData {
let origin_folder = Path::new(&program_data)
.join("Origin");
if origin_folder.exists(){
res.exe_path = Some(origin_folder.to_owned());
res.local_content_path = Some(origin_folder.to_owned());
}
}
res