fix bug on Windows resize event

This commit is contained in:
Carlos Aragones 2020-09-18 18:53:18 +02:00
parent 42270f4c53
commit 4c898b0b8b

View File

@ -185,7 +185,7 @@ WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
#else
resize_GL(window_data);
#endif
kCall(resize_func, window_data->dst_width, window_data->dst_height);
kCall(resize_func, window_data->window_width, window_data->window_height);
}
break;