Update missing file from dilate

This commit is contained in:
Jupeyy 2021-02-13 13:59:04 +01:00
parent 55a8293e7e
commit 50e6b3c4d8
2 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 109 KiB

View file

@ -61,7 +61,10 @@ static void CopyColorValues(int w, int h, int BPP, unsigned char *pSrc, unsigned
for(int x = 0; x < w; x++, m += BPP)
{
for(int i = 0; i < BPP - 1; ++i)
pDest[m + i] = pSrc[m + i];
{
if(pDest[m + 3] == 0)
pDest[m + i] = pSrc[m + i];
}
}
}
}