diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-07-03 19:17:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 19:17:09 +0200 |
commit | 6bd22b9c2ebe8a7c489e167d61961be5ee210923 (patch) | |
tree | 3f4dc8b9f3faeaf897e0387ed77d61d24282bcb4 /platform/windows/os_windows.h | |
parent | e0c7ffc65aa17b626e04949a5bf63bda51da595c (diff) | |
parent | 6856c5249104d2b69fe297ff7546092e3bb23555 (diff) |
Merge pull request #5516 from Hinsbart/fix_win_freeze
Windows: prevent freeze while moving or resizing the game window.
Diffstat (limited to 'platform/windows/os_windows.h')
-rw-r--r-- | platform/windows/os_windows.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/windows/os_windows.h b/platform/windows/os_windows.h index 509d76abbf..d2249bf352 100644 --- a/platform/windows/os_windows.h +++ b/platform/windows/os_windows.h @@ -104,6 +104,8 @@ class OS_Windows : public OS { HINSTANCE hInstance; // Holds The Instance Of The Application HWND hWnd; + uint32_t move_timer_id; + HCURSOR hCursor; Size2 window_rect; |