Fix encoding in xbrz.cpp.

This commit is contained in:
Brandon Wright 2018-11-17 15:16:31 -06:00
parent e307633c7d
commit e7e72147ea
1 changed files with 2 additions and 2 deletions

View File

@ -414,7 +414,7 @@ void blendPixel(const Kernel_3x3& ker,
return true;
//make sure there is no second blending in an adjacent rotation for this pixel: handles insular pixels, mario eyes
if (getTopR(blend) != BLEND_NONE && !eq(e, g)) //but support double-blending for 90° corners
if (getTopR(blend) != BLEND_NONE && !eq(e, g)) //but support double-blending for 90 degree corners
return false;
if (getBottomL(blend) != BLEND_NONE && !eq(e, c))
return false;
@ -1269,4 +1269,4 @@ void bilinearScaleAmp(const uint32_t* src, int srcWidth, int srcHeight, //throw
});
trgView.synchronize(); //throw ?
}
#endif
#endif