Fixed x86 warning

This commit is contained in:
Chuck Walbourn 2020-06-12 21:39:09 -07:00
parent 741870f834
commit 2573bd8307

View File

@ -1018,7 +1018,7 @@ HRESULT DirectX::SaveDDSTextureToFile(
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)
{
memcpy_s(dptr, rowPitch, sptr, msize);