diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2020-12-18 14:08:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 14:08:15 +0100 |
commit | 771b99b7f491883057881c79105f9c257ed22787 (patch) | |
tree | 65b5ad7ac8155384e35052db360d486a9860b5c2 /scene | |
parent | 8180b607b85cb290dc4654cdacc2629a7eb325a5 (diff) | |
parent | a5c47dab5b51612ee976476e6ff189f12b47fa59 (diff) | |
download | redot-engine-771b99b7f491883057881c79105f9c257ed22787.tar.gz |
Merge pull request #44495 from godotengine/font-typo-44494
Font: Fix typo in DynamicFontData compat code
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/font.cpp b/scene/resources/font.cpp index fab8642c20..791f260c0e 100644 --- a/scene/resources/font.cpp +++ b/scene/resources/font.cpp @@ -969,7 +969,7 @@ RES ResourceFormatLoaderFont::load(const String &p_path, const String &p_origina void ResourceFormatLoaderFont::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const { #ifndef DISABLE_DEPRECATED - if (p_type == "DynacmicFontData") { + if (p_type == "DynamicFontData") { p_extensions->push_back("ttf"); p_extensions->push_back("otf"); p_extensions->push_back("woff"); |