Kaynağa Gözat

DirAccessPack: Fix file_exists and dir_exists in exported projects

Haoyu Qiu 9 ay önce
ebeveyn
işleme
1b4f6f6bfa
1 değiştirilmiş dosya ile 0 ekleme ve 4 silme
  1. 0 4
      core/io/file_access_pack.cpp

+ 0 - 4
core/io/file_access_pack.cpp

@@ -544,8 +544,6 @@ String DirAccessPack::get_current_dir(bool p_include_drive) const {
 }
 
 bool DirAccessPack::file_exists(String p_file) {
-	p_file = fix_path(p_file);
-
 	PackedData::PackedDir *pd = _find_dir(p_file.get_base_dir());
 	if (!pd) {
 		return false;
@@ -554,8 +552,6 @@ bool DirAccessPack::file_exists(String p_file) {
 }
 
 bool DirAccessPack::dir_exists(String p_dir) {
-	p_dir = fix_path(p_dir);
-
 	return _find_dir(p_dir) != nullptr;
 }