Merge pull request #77165 from bitsawer/fix_clang_build
Fix for Clang dev_mode Windows build
This commit is contained in:
commit
da21cb7042
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue