diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 15:33:24 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 15:33:24 +0200 |
commit | ec60c4ee9e5d5a4452bf43cba44d4fefa56261da (patch) | |
tree | 27ac3f38ae4c8c5f18167a482441a54dfdd38662 /core/io/file_access_pack.cpp | |
parent | 4ebf7d14ac5e9b0c6c86535cb7bb5e428f00542a (diff) | |
parent | 9f2dc68279761bb5c4ed569ba4fcae002facd810 (diff) | |
download | redot-engine-ec60c4ee9e5d5a4452bf43cba44d4fefa56261da.tar.gz |
Merge pull request #65271 from KoBeWi/FirAccess🌲
Replace File/Directory with FileAccess/DirAccess
Diffstat (limited to 'core/io/file_access_pack.cpp')
-rw-r--r-- | core/io/file_access_pack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/file_access_pack.cpp b/core/io/file_access_pack.cpp index adae0db0f4..dfcce30ab5 100644 --- a/core/io/file_access_pack.cpp +++ b/core/io/file_access_pack.cpp @@ -259,7 +259,7 @@ Ref<FileAccess> PackedSourcePCK::get_file(const String &p_path, PackedData::Pack ////////////////////////////////////////////////////////////////// -Error FileAccessPack::_open(const String &p_path, int p_mode_flags) { +Error FileAccessPack::open_internal(const String &p_path, int p_mode_flags) { ERR_FAIL_V(ERR_UNAVAILABLE); return ERR_UNAVAILABLE; } |