1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fix res:// trimmed to s:// on Windows

This commit is contained in:
Pedro J. Estébanez
2020-04-01 10:22:05 +02:00
parent e707b712e8
commit 21703aefee

View File

@@ -209,8 +209,15 @@ String DirAccessWindows::get_current_dir() {
String DirAccessWindows::get_current_dir_without_drive() {
String dir = get_current_dir();
int p = current_dir.find(":");
return p != -1 ? dir.right(p + 1) : dir;
if (_get_root_string() == "") {
int p = current_dir.find(":");
if (p != -1) {
dir = dir.right(p + 1);
}
}
return dir;
}
bool DirAccessWindows::file_exists(String p_file) {