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

pull/16/head
peter1138 7 years ago
parent 7659ec05af
commit 01c8ba0d5d

@ -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;
}

Loading…
Cancel
Save