mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
fix API string path
This commit is contained in:
@@ -37,7 +37,7 @@ bool ImageFormatLoader::recognize(const String &p_extension) const {
|
||||
get_recognized_extensions(&extensions);
|
||||
for (List<String>::Element *E = extensions.front(); E; E = E->next()) {
|
||||
|
||||
if (E->get().nocasecmp_to(p_extension.get_extension()) == 0)
|
||||
if (E->get().nocasecmp_to(p_extension) == 0)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user