Fix missing / in default epic folder

This commit is contained in:
Philip Kristoffersen
2021-09-25 13:14:44 +02:00
parent 7f1f75e431
commit f2b94b9417
+1 -1
View File
@@ -76,7 +76,7 @@ fn get_manifest_dir_path(
let system_drive =
env::var(key).expect("We are on windows, we must know what the SYSTEMDRIVE is");
let path = Path::new(system_drive.as_str())
let path = Path::new(format!("{}\\",system_drive).as_str())
.join("ProgramData")
.join("Epic")
.join("EpicGamesLauncher")