Browse Source

Merge pull request #281 from dariomanesku/master

Added missing toggleFullscreen() in entry_windows.cpp.
Branimir Karadžić 10 năm trước cách đây
mục cha
commit
3b2d636744
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      examples/common/entry/entry_windows.cpp

+ 5 - 0
examples/common/entry/entry_windows.cpp

@@ -1067,6 +1067,11 @@ namespace entry
 		PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_TOGGLE_FRAME, _handle.idx, 0);
 	}
 
+	void toggleFullscreen(WindowHandle _handle)
+	{
+		BX_UNUSED(_handle);
+	}
+
 	void setMouseLock(WindowHandle _handle, bool _lock)
 	{
 		PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_MOUSE_LOCK, _handle.idx, _lock);