From 0b1827e39e320b60cb61a3fe512d3f7c63bac79c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 19 Sep 2014 18:33:11 -0400 Subject: [PATCH] Fixed a typo in a comment. --- area_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/area_windows.c b/area_windows.c index b8f1235..115997b 100644 --- a/area_windows.c +++ b/area_windows.c @@ -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;