mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed compile error.
This commit is contained in:
parent
0aba867510
commit
b9d509763e
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ namespace entry
|
||||||
|
|
||||||
void destroyWindow(WindowHandle _handle)
|
void destroyWindow(WindowHandle _handle)
|
||||||
{
|
{
|
||||||
if (isValid(handle) )
|
if (isValid(_handle) )
|
||||||
{
|
{
|
||||||
s_ctx.m_eventQueue.postWindowEvent(_handle, NULL);
|
s_ctx.m_eventQueue.postWindowEvent(_handle, NULL);
|
||||||
XUnmapWindow(s_ctx.m_display, s_ctx.m_window[_handle.idx]);
|
XUnmapWindow(s_ctx.m_display, s_ctx.m_window[_handle.idx]);
|
||||||
|
|
Loading…
Reference in a new issue