actually do redraw on resize - need that win32 window class style..

This commit is contained in:
Ryan Fleury
2024-04-17 09:58:03 -07:00
parent 9f4aade2e1
commit 72e8ae6e30
+1
View File
@@ -846,6 +846,7 @@ os_graphical_init(void)
wndclass.lpszClassName = L"graphical-window";
wndclass.hCursor = LoadCursorA(0, IDC_ARROW);
wndclass.hIcon = LoadIcon(w32_h_instance, MAKEINTRESOURCE(1));
wndclass.style = CS_VREDRAW|CS_HREDRAW;
ATOM wndatom = RegisterClassExW(&wndclass);
(void)wndatom;
}