Wrong coordinate being stored in Y.

This commit is contained in:
Michael Jumper 2013-05-13 14:40:54 -07:00
parent 3af39503c0
commit b20aa53843

View File

@ -72,7 +72,7 @@ static void __guac_rdp_clip_rect(rdp_guac_client_data* data, int* x, int* y, int
/* Store new rect dimensions */
*x = clipped_left;
*y = clipped_right;
*y = clipped_top;
*w = clipped_right - clipped_left + 1;
*h = clipped_bottom - clipped_top + 1;