diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-18 10:49:00 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-18 10:49:00 +0200 |
commit | c6e5c7653610c1e8321610a75cc6dc97cd7c51df (patch) | |
tree | 490598360207ecb26a78b1c539c3fbaac8f7a504 /core/config/project_settings.h | |
parent | 6e8638683e134b62eb3b380f4687c2762f782896 (diff) | |
parent | 9d6af9323aa856bd1e23453838fd2f6c0c0c92ef (diff) |
Merge pull request #65561 from ryburnj/inconsistent-cap-scene-file-name
Fix inconsistent scene file name casing
Diffstat (limited to 'core/config/project_settings.h')
-rw-r--r-- | core/config/project_settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/config/project_settings.h b/core/config/project_settings.h index a9af63ee39..960dfe0395 100644 --- a/core/config/project_settings.h +++ b/core/config/project_settings.h @@ -45,9 +45,10 @@ public: static const String PROJECT_DATA_DIR_NAME_SUFFIX; enum { - //properties that are not for built in values begin from this value, so builtin ones are displayed first + // Properties that are not for built in values begin from this value, so builtin ones are displayed first. NO_BUILTIN_ORDER_BASE = 1 << 16 }; + #ifdef TOOLS_ENABLED const static PackedStringArray get_required_features(); const static PackedStringArray get_unsupported_features(const PackedStringArray &p_project_features); |