Module changes, found Type_Incomplete error

This commit is contained in:
Krzosa Karol
2022-10-14 17:20:46 +02:00
parent a60df75cc3
commit e07ad3c86d
7 changed files with 59 additions and 15 deletions

View File

@@ -53,7 +53,7 @@ DestroyBitmap :: (b: *WIN32_Bitmap)
ZeroMemory(b, SizeOf(WIN32_Bitmap))
DrawBitmapInCompatibleDC :: (b: *WIN32_Bitmap)
if(IsValidBitmap(b))
if IsValidBitmap(b)
SelectObject(b.hdc, b.dib)
BitBlt(b.compatible_dc, 0, 0, b.size.x->int, b.size.y->int, b.hdc, 0, 0, SRCCOPY)