Skip to content

Commit

Permalink
[godot] Fix missing return statement in SpineAtlasResource::load_from…
Browse files Browse the repository at this point in the history
…_atlas_file
  • Loading branch information
badlogic committed Oct 7, 2024
1 parent dbf0db5 commit e499992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spine-godot/spine_godot/SpineAtlasResource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e499992

Please sign in to comment.