diff options
author | 2021-10-02 18:21:12 +0200 | |
---|---|---|
committer | 2021-10-02 12:21:12 -0400 | |
commit | 0eeb918991d9d9d5acac6eab82fb6b73b9ff71b4 (patch) | |
tree | b6cf6f1b41da8b7650252e8275e69573811692aa /3rdparty/bgfx/examples/common/ps/particle_system.cpp | |
parent | 1d61695dabe1aebe22a5db080ec7cc3dac680906 (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.cpp | 4 |
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: |