From 5f6b637d53db7ad4020fa2c79450bc2e0583f599 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 6 Oct 2023 10:50:15 +0200 Subject: [PATCH] [godot] Make SpineAtlasResource::clear_native_data const. --- spine-godot/spine_godot/SpineAtlasResource.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-godot/spine_godot/SpineAtlasResource.h b/spine-godot/spine_godot/SpineAtlasResource.h index 5105d9606..af27d6cd9 100644 --- a/spine-godot/spine_godot/SpineAtlasResource.h +++ b/spine-godot/spine_godot/SpineAtlasResource.h @@ -77,7 +77,7 @@ public: Array get_normal_maps(); - void clear_native_data() { + const void clear_native_data() { this->atlas = nullptr; this->texture_loader = nullptr; }