summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/shape.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/shape.h b/desktop/shape.h
index c322602b9..5baf629b6 100644
--- a/desktop/shape.h
+++ b/desktop/shape.h
@@ -17,7 +17,7 @@
*/
/** \file
- * Core mouse state.
+ * Core shapes.
*/
#ifndef _NETSURF_DESKTOP_SHAPE_H_
@@ -25,8 +25,8 @@
/* Rectangle coordinates */
struct rect {
- int x0, y0;
- int x1, y1;
+ int x0, y0; /* Top left */
+ int x1, y1; /* Bottom right */
};
#endif