OpenGL: Fix uninitialized memory usage for GPUPartciles interp_to_end

Fixes #84072.
This commit is contained in:
Rémi Verschelde
2023-10-30 15:06:12 +01:00
parent 5dc10b5aa5
commit acbc341a58
3 changed files with 3 additions and 3 deletions

View File

@ -233,7 +233,7 @@ private:
Transform3D emission_transform;
Vector3 emitter_velocity;
float interp_to_end;
float interp_to_end = 0.0;
HashSet<RID> collisions;