From e4999922b6a57502450db89f1163f112fc6e43fd Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Mon, 7 Oct 2024 07:46:06 +0200 Subject: [PATCH] [godot] Fix missing return statement in SpineAtlasResource::load_from_atlas_file --- spine-godot/spine_godot/SpineAtlasResource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-godot/spine_godot/SpineAtlasResource.cpp b/spine-godot/spine_godot/SpineAtlasResource.cpp index 1531a8978..a2ede8879 100644 --- a/spine-godot/spine_godot/SpineAtlasResource.cpp +++ b/spine-godot/spine_godot/SpineAtlasResource.cpp @@ -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) {