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 /drivers/unix/file_access_unix.h | |
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 'drivers/unix/file_access_unix.h')
-rw-r--r-- | drivers/unix/file_access_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/file_access_unix.h b/drivers/unix/file_access_unix.h index 297c34e454..e1311a80f8 100644 --- a/drivers/unix/file_access_unix.h +++ b/drivers/unix/file_access_unix.h @@ -54,7 +54,7 @@ class FileAccessUnix : public FileAccess { public: static CloseNotificationFunc close_notification_func; - 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 virtual String get_path() const override; /// returns the path for the current open file |