Fixed x86 warning
This commit is contained in:
parent
741870f834
commit
2573bd8307
@ -1018,7 +1018,7 @@ HRESULT DirectX::SaveDDSTextureToFile(
|
|||||||
|
|
||||||
uint8_t* dptr = pixels.get();
|
uint8_t* dptr = pixels.get();
|
||||||
|
|
||||||
size_t msize = std::min<size_t>(rowPitch, dstRowPitch);
|
size_t msize = std::min<size_t>(rowPitch, size_t(dstRowPitch));
|
||||||
for (size_t h = 0; h < rowCount; ++h)
|
for (size_t h = 0; h < rowCount; ++h)
|
||||||
{
|
{
|
||||||
memcpy_s(dptr, rowPitch, sptr, msize);
|
memcpy_s(dptr, rowPitch, sptr, msize);
|
||||||
|
Loading…
Reference in New Issue
Block a user