Windows: Normalize slashes in return of OS.get_temp_dir()
This commit is contained in:
parent
ee4acfbfbf
commit
b38103e95d
1 changed files with 1 additions and 1 deletions
|
|
@ -2168,7 +2168,7 @@ String OS_Windows::get_temp_path() const {
|
|||
temp_path_cache = get_config_path();
|
||||
}
|
||||
}
|
||||
return temp_path_cache;
|
||||
return temp_path_cache.replace("\\", "/").trim_suffix("/");
|
||||
}
|
||||
|
||||
// Get properly capitalized engine name for system paths
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue