From a5c47dab5b51612ee976476e6ff189f12b47fa59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 18 Dec 2020 12:59:48 +0100 Subject: [PATCH] Font: Fix typo in DynamicFontData compat code Fixes #44494. --- scene/resources/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 *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");