mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed initializer order warning.
This commit is contained in:
parent
f30b0d3c50
commit
9941475010
1 changed files with 2 additions and 2 deletions
|
@ -67,11 +67,11 @@ namespace entry
|
|||
struct Context
|
||||
{
|
||||
Context()
|
||||
: m_frame(true)
|
||||
: m_mz(0)
|
||||
, m_frame(true)
|
||||
, m_mouseLock(false)
|
||||
, m_init(false)
|
||||
, m_exit(false)
|
||||
, m_mz(0)
|
||||
{
|
||||
memset(s_translateKey, 0, sizeof(s_translateKey) );
|
||||
s_translateKey[VK_ESCAPE] = Key::Esc;
|
||||
|
|
Loading…
Reference in a new issue