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 /platform/android/file_access_filesystem_jandroid.h | |
parent | 4ebf7d14ac5e9b0c6c86535cb7bb5e428f00542a (diff) | |
parent | 9f2dc68279761bb5c4ed569ba4fcae002facd810 (diff) |
Merge pull request #65271 from KoBeWi/FirAccess🌲
Replace File/Directory with FileAccess/DirAccess
Diffstat (limited to 'platform/android/file_access_filesystem_jandroid.h')
-rw-r--r-- | platform/android/file_access_filesystem_jandroid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/file_access_filesystem_jandroid.h b/platform/android/file_access_filesystem_jandroid.h index 76d7db6e3a..815ab36516 100644 --- a/platform/android/file_access_filesystem_jandroid.h +++ b/platform/android/file_access_filesystem_jandroid.h @@ -60,7 +60,7 @@ class FileAccessFilesystemJAndroid : public FileAccess { void _set_eof(bool eof); public: - virtual Error _open(const String &p_path, int p_mode_flags) override; ///< open a file + virtual Error open_internal(const String &p_path, int p_mode_flags) override; ///< open a file virtual bool is_open() const override; ///< true when file is open /// returns the path for the current open file |