Fix for Clang dev_mode Windows build

This commit is contained in:
bitsawer 2023-05-17 19:35:18 +03:00
parent 6d3935d42d
commit 68da61e74c
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ Ref<Image> DisplayServerWindows::screen_get_image(int p_screen) const {
SelectObject(hdc, hbm);
BitBlt(hdc, 0, 0, width, height, dc, p1.x, p1.y, SRCCOPY);
BITMAPINFO bmp_info = { 0 };
BITMAPINFO bmp_info = {};
bmp_info.bmiHeader.biSize = sizeof(bmp_info.bmiHeader);
bmp_info.bmiHeader.biWidth = width;
bmp_info.bmiHeader.biHeight = -height;