summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/ps/particle_system.cpp
diff options
context:
space:
mode:
author Julian Sikorski <belegdol+github@gmail.com>2021-10-02 18:21:12 +0200
committer GitHub <noreply@github.com>2021-10-02 12:21:12 -0400
commit0eeb918991d9d9d5acac6eab82fb6b73b9ff71b4 (patch)
treeb6cf6f1b41da8b7650252e8275e69573811692aa /3rdparty/bgfx/examples/common/ps/particle_system.cpp
parent1d61695dabe1aebe22a5db080ec7cc3dac680906 (diff)
Update bgfx, bx and bimg to latest upstream (fixes issue #8057) (#8645)
Diffstat (limited to '3rdparty/bgfx/examples/common/ps/particle_system.cpp')
-rw-r--r--3rdparty/bgfx/examples/common/ps/particle_system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/common/ps/particle_system.cpp b/3rdparty/bgfx/examples/common/ps/particle_system.cpp
index 52647d06d2f..cbcf2b874b0 100644
--- a/3rdparty/bgfx/examples/common/ps/particle_system.cpp
+++ b/3rdparty/bgfx/examples/common/ps/particle_system.cpp
@@ -248,7 +248,7 @@ namespace ps
Particle& particle = m_particles[m_num];
m_num++;
- bx::Vec3 pos;
+ bx::Vec3 pos(bx::init::None);
switch (m_shape)
{
default:
@@ -281,7 +281,7 @@ namespace ps
break;
}
- bx::Vec3 dir;
+ bx::Vec3 dir(bx::init::None);
switch (m_direction)
{
default: