summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--area_windows.c2
1 files changed, 1 insertions, 1 deletions
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;