oooops RECT_SET_POINT was broken

This commit is contained in:
Dana Jansens 2003-08-27 23:16:06 +00:00
parent 56cc3dc663
commit cadab91e52

View file

@ -23,7 +23,7 @@ typedef struct _Rect {
} Rect; } Rect;
#define RECT_SET_POINT(r, nx, ny) \ #define RECT_SET_POINT(r, nx, ny) \
(r).x = (ny), (r).y = (ny) (r).x = (nx), (r).y = (ny)
#define RECT_SET_SIZE(r, w, h) \ #define RECT_SET_SIZE(r, w, h) \
(r).width = (w), (r).height = (h) (r).width = (w), (r).height = (h)
#define RECT_SET(r, nx, ny, w, h) \ #define RECT_SET(r, nx, ny, w, h) \