(svn r27829) -Fix (r27821): Occasional crash caused by mixing int/uint arithmetic.

This commit is contained in:
peter1138 2017-03-25 23:19:41 +00:00
parent 0cf3266280
commit dac0a3e86e
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ bool FillDrawPixelInfo(DrawPixelInfo *n, int left, int top, int width, int heigh
* @param size The height or width of the object to draw.
* @return Offset of where to start drawing the object.
*/
static inline int CenterBounds(int min, int max, uint size)
static inline int CenterBounds(int min, int max, int size)
{
return min + (max - min - size + 1) / 2;
}