diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-30 14:55:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 14:55:04 +0200 |
commit | 3a19400889d518e35e69087588195328bcda9f8e (patch) | |
tree | 5c5eada331f5a8639d043e9dd53e699792c8534a /core | |
parent | 998974fd7af6e720cb00898071d3050f7e019ccb (diff) | |
parent | 11ccfad1aabec468fd92e1b567f3f9d94b5acc4b (diff) |
Merge pull request #48685 from bruvzg/bundle_icon_4
Diffstat (limited to 'core')
-rw-r--r-- | core/os/os.cpp | 5 | ||||
-rw-r--r-- | core/os/os.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 7505f3ff34..69366f688c 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -282,6 +282,11 @@ String OS::get_bundle_resource_dir() const { return "."; } +// Path to macOS .app bundle embedded icon +String OS::get_bundle_icon_path() const { + return String(); +} + // OS specific path for user:// String OS::get_user_data_dir() const { return "."; diff --git a/core/os/os.h b/core/os/os.h index c027428477..29d33ce4f0 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -252,6 +252,7 @@ public: virtual String get_config_path() const; virtual String get_cache_path() const; virtual String get_bundle_resource_dir() const; + virtual String get_bundle_icon_path() const; virtual String get_user_data_dir() const; virtual String get_resource_dir() const; |