From 646eadabf6bbf05066cfeb7beb057c93e17b647c Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 24 Jun 2026 16:56:00 +0200 Subject: [PATCH] Fixes --- Content/Shaders/GI/DDGI.flax | 4 ++-- Source/Engine/Particles/Particles.cpp | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Content/Shaders/GI/DDGI.flax b/Content/Shaders/GI/DDGI.flax index 5fae57ea8..cba2ec02f 100644 --- a/Content/Shaders/GI/DDGI.flax +++ b/Content/Shaders/GI/DDGI.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25be876e0f8093c6f9d1f382529ad29357f854b82bd6124e1c5e261bddaccda5 -size 39781 +oid sha256:26353ab647b2d3d4b910e3fab15306343d15512851603d014174b42ab7d9140d +size 40365 diff --git a/Source/Engine/Particles/Particles.cpp b/Source/Engine/Particles/Particles.cpp index 3c41cd243..4b1160db8 100644 --- a/Source/Engine/Particles/Particles.cpp +++ b/Source/Engine/Particles/Particles.cpp @@ -175,7 +175,9 @@ void Particles::OnEffectDestroy(ParticleEffect* effect) { UpdateList.Remove(effect); #if COMPILE_WITH_GPU_PARTICLES + GpuUpdateListLocker.Lock(); GpuUpdateList.Remove(effect); + GpuUpdateListLocker.Unlock(); #endif }