diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-04 13:19:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 13:19:55 +0100 |
commit | f83f1d7c9b299f21f818e0ea28c27345f65bde4b (patch) | |
tree | 6142421a00cd01011e7bd433953f4800d381e3c6 /platform/android/dir_access_jandroid.h | |
parent | 2856740e6b238576273a321a125e9d92b687fdb2 (diff) | |
parent | aee586553a4be72b72b669fb489fae72337ab7ad (diff) | |
download | redot-engine-f83f1d7c9b299f21f818e0ea28c27345f65bde4b.tar.gz |
Merge pull request #36069 from RandomShaper/imvu/improve_drives_ux
Improve UX of drive letters
Diffstat (limited to 'platform/android/dir_access_jandroid.h')
-rw-r--r-- | platform/android/dir_access_jandroid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/dir_access_jandroid.h b/platform/android/dir_access_jandroid.h index caeb4b58b9..8dab3e50ce 100644 --- a/platform/android/dir_access_jandroid.h +++ b/platform/android/dir_access_jandroid.h @@ -65,7 +65,7 @@ public: virtual String get_drive(int p_drive); virtual Error change_dir(String p_dir); ///< can be relative or absolute, return false on success - virtual String get_current_dir(); ///< return current dir location + virtual String get_current_dir(bool p_include_drive = true); ///< return current dir location virtual bool file_exists(String p_file); virtual bool dir_exists(String p_dir); |