Fixed a bug with PatBlt and windows 95 and 98

This commit is contained in:
dcone%netscape.com 2000-05-03 13:31:16 +00:00
parent 79694e30db
commit 2b15d4275c

View File

@ -2838,7 +2838,7 @@ PRInt32 canRaster;
if (PR_TRUE == gIsWIN95) {
// windows 98
if((aWidth<8)&&(aHeight<8)){
return PR_TRUE;
return PR_FALSE; // this does not seem to work on win 98
}else{
return PR_FALSE;
}