mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Update missing file from dilate
This commit is contained in:
parent
55a8293e7e
commit
50e6b3c4d8
Binary file not shown.
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 109 KiB |
|
@ -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];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue