Fixed a bug in RectInRegion.

This commit is contained in:
NF Stevens 1998-10-21 14:23:38 +00:00 committed by Alexandre Julliard
parent 277312f870
commit 47c7334a81
1 changed files with 1 additions and 2 deletions

View File

@ -635,8 +635,7 @@ BOOL32 WINAPI RectInRegion32( HRGN32 hrgn, const RECT32 *rect )
continue; /* not far enough over yet */
if (pCurRect->left >= rect->right) {
ret = FALSE; /* too far over */
break;
continue;
}
ret = TRUE;