Increased tolerance a little bit more for multiple blending passes accumulating error.
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404217
This commit is contained in:
parent
e70cbce904
commit
e957ccc22a
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ int surface_compare( SDL_Surface *sur, const SurfaceImage_t *img )
|
|||
dist += (A-pd[3])*(A-pd[3]);
|
||||
}
|
||||
/* Allow up to sqrt(32) difference in blending accuracy */
|
||||
if (dist > 32) {
|
||||
if (dist > 64) {
|
||||
/*printf("pixel %d,%d varies by %d\n", i, j, dist);*/
|
||||
++ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue