mirror of https://github.com/snes9xgit/snes9x.git
Use UTF-8 encoding for xbrz, not WIN1251.
This commit is contained in:
parent
6f2fe7e52b
commit
ca3b84826e
|
@ -446,7 +446,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° corners
|
||||
return false;
|
||||
if (getBottomL(blend) != BLEND_NONE && !eq(e, c))
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue