summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-04-16 14:25:12 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-04-16 14:25:12 +0200
commitfcf852fea2b9267c9ad75921955d73a3143410ec (patch)
treee19d80b90df364d3480c8a00423516acfabbffda /3rdparty
parent2b97bfba29e2ff0ed1864f6111a687ac1b61da43 (diff)
fixed compiler warning, sent upstream (nw)
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/bgfx/src/renderer_d3d11.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/src/renderer_d3d11.h b/3rdparty/bgfx/src/renderer_d3d11.h
index 1bbc3b29181..22bf6a0ddce 100644
--- a/3rdparty/bgfx/src/renderer_d3d11.h
+++ b/3rdparty/bgfx/src/renderer_d3d11.h
@@ -285,10 +285,10 @@ namespace bgfx { namespace d3d11
struct FrameBufferD3D11
{
FrameBufferD3D11()
- : m_denseIdx(UINT16_MAX)
+ : m_dsv(NULL)
+ , m_denseIdx(UINT16_MAX)
, m_num(0)
, m_numTh(0)
- , m_dsv(NULL)
{
}