summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-09-19 18:33:11 -0400
committerPietro Gagliardi <[email protected]>2014-09-19 18:33:11 -0400
commit0b1827e39e320b60cb61a3fe512d3f7c63bac79c (patch)
treef72b0e4223bc4172dbe066f7b0839c87c5e61ee5
parenta7784143908449efb4a613b0a17f7b5fcc0b2ea2 (diff)
Fixed a typo in a comment.
-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;