Bug fix of image background color issue .

This commit is contained in:
Zero Fanker 2024-05-19 11:38:09 -04:00
parent 48c9065537
commit 7962824be7

View file

@ -579,6 +579,7 @@ void CLoading::UnionSHP_GetAndClear(unsigned char*& pOutBuffer, int* OutWidth, i
// just make it work like unsigned char[W][H];
pOutBuffer = new(unsigned char[W * H]);
ZeroMemory(pOutBuffer, W * H);
*OutWidth = W;
*OutHeight = H;