mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-18 04:53:06 +01:00
updating to cleaning compile in mingw with -Wall/-Wextra
This commit is contained in:
@@ -2872,8 +2872,8 @@ namespace bgfx
|
||||
|
||||
case WM_KEYDOWN:
|
||||
case WM_SYSKEYDOWN:
|
||||
if (WM_KEYDOWN == _id && VK_F11 == _wparam
|
||||
|| WM_SYSKEYDOWN == _id && VK_RETURN == _wparam)
|
||||
if ((WM_KEYDOWN == _id && VK_F11 == _wparam)
|
||||
|| (WM_SYSKEYDOWN == _id && VK_RETURN == _wparam))
|
||||
{
|
||||
toggleWindowFrame();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user