make rect_t use int's... no overflow. yay!

SVN revision: 67884
This commit is contained in:
Carsten Haitzler 2012-02-13 14:37:41 +00:00
parent e1668198af
commit e669719714
1 changed files with 6 additions and 6 deletions

View File

@ -1005,12 +1005,12 @@ struct list
struct rect struct rect
{ {
short left; int left;
short top; int top;
short right; int right;
short bottom; int bottom;
short width; int width;
short height; int height;
int area; int area;
}; };