[godot] Fix missing return statement in SpineAtlasResource::load_from_atlas_file

This commit is contained in:
Mario Zechner 2024-10-07 07:46:06 +02:00
parent dbf0db5c10
commit e4999922b6

View File

@ -218,7 +218,7 @@ String SpineAtlasResource::get_source_path() {
}
Error SpineAtlasResource::load_from_atlas_file(const String &path) {
load_from_atlas_file_internal(path, false);
return load_from_atlas_file_internal(path, false);
}
Error SpineAtlasResource::load_from_atlas_file_internal(const String &path, bool is_importing) {