Fixed misc. stray white pixels not white Color Half-Shift Pixel

This commit is contained in:
mpohoreski
2011-01-11 07:58:44 +00:00
parent 4f931803e0
commit 3da0210312

View File

@@ -1710,7 +1710,7 @@ Legend:
if (aPixels[iPixel]) // pixel on if (aPixels[iPixel]) // pixel on
#endif #endif
{ {
if (aPixels[2]) // White if pixel from previous byte and first pixel of this byte is on if (aPixels[2] || aPixels[0]) // White if pixel from previous byte and first pixel of this byte is on
{ {
SETSOURCEPIXEL(SRCOFFS_HIRES+offsetx+x+0 ,y , HGR_WHITE ); SETSOURCEPIXEL(SRCOFFS_HIRES+offsetx+x+0 ,y , HGR_WHITE );
SETSOURCEPIXEL(SRCOFFS_HIRES+offsetx+x+0 ,y+1, HGR_WHITE ); SETSOURCEPIXEL(SRCOFFS_HIRES+offsetx+x+0 ,y+1, HGR_WHITE );