From 4c93c5535ed5437343dc0632df758197ba9e3204 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sat, 11 Apr 2026 23:22:52 +0200 Subject: [PATCH] typo --- implementations/Crafter.Graphics-Rendertarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/Crafter.Graphics-Rendertarget.cpp b/implementations/Crafter.Graphics-Rendertarget.cpp index c01fb3b..ac755d8 100644 --- a/implementations/Crafter.Graphics-Rendertarget.cpp +++ b/implementations/Crafter.Graphics-Rendertarget.cpp @@ -55,7 +55,7 @@ RendertargetVulkan::RendertargetVulkan(std::uint16_t sizeX, std::uint16_t sizeY) void RendertargetVulkan::UpdateElements() { elements.clear(); - std::sort(transform->children.begin(), transform->children.end(), [](Transform2D* a, Transform2D* b){ return a->anchor.z < b->anchor.z; }); + std::sort(transform.children.begin(), transform.children.end(), [](Transform2D* a, Transform2D* b){ return a->anchor.z < b->anchor.z; }); for(Transform2D* child : transform.children) { SetOrderResursive(child); }