diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-29 16:47:14 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-29 16:47:14 +0100 |
| commit | 3f35f27838121e7f167d17afc32aa4ded7f1937d (patch) | |
| tree | daec8f4916cc6a3e576f1af75fa64b21009f5c5a /platform/ios/os_ios.h | |
| parent | 6fdbf79046b6404331017c53044507e639efdcc3 (diff) | |
| parent | 0cea664cb52b6ba15357160ec192ae8337059855 (diff) | |
Merge pull request #69334 from bruvzg/ios_user_dir
[iOS] Read document and cache path directly in the OS code, instead of passing in from main.
Diffstat (limited to 'platform/ios/os_ios.h')
| -rw-r--r-- | platform/ios/os_ios.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/platform/ios/os_ios.h b/platform/ios/os_ios.h index 0c23b216c5..3560de7486 100644 --- a/platform/ios/os_ios.h +++ b/platform/ios/os_ios.h @@ -71,9 +71,6 @@ private: virtual void finalize() override; - String user_data_dir; - String cache_dir; - bool is_focused = false; void deinitialize_modules(); @@ -81,7 +78,7 @@ private: public: static OS_IOS *get_singleton(); - OS_IOS(String p_data_dir, String p_cache_dir); + OS_IOS(); ~OS_IOS(); void initialize_modules(); |