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
{
short left;
short top;
short right;
short bottom;
short width;
short height;
int left;
int top;
int right;
int bottom;
int width;
int height;
int area;
};