Fixed a typo in a comment.

This commit is contained in:
Pietro Gagliardi 2014-09-19 18:33:11 -04:00
parent a778414390
commit 0b1827e39e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ static void paintArea(HWND hwnd, void *data)
ZeroMemory(&bi, sizeof (BITMAPINFO));
bi.bmiHeader.biSize = sizeof (BITMAPINFOHEADER);
bi.bmiHeader.biWidth = (LONG) dx;
bi.bmiHeader.biHeight = -((LONG) dy); // negative height to force top-down drawing;
bi.bmiHeader.biHeight = -((LONG) dy); // negative height to force top-down drawing
bi.bmiHeader.biPlanes = 1;
bi.bmiHeader.biBitCount = 32;
bi.bmiHeader.biCompression = BI_RGB;