compile error fix

This commit is contained in:
baldurk
2015-01-29 08:19:46 +00:00
parent b7f9d5b6d0
commit 96d0f472e0
+1 -1
View File
@@ -1708,7 +1708,7 @@ void D3D11Replay::SetProxyBufferData(ResourceId bufid, byte *data, size_t dataSi
return;
}
ctx->UpdateSubresource(buf->GetReal(), 0, NULL, data, dataSize, dataSize);
ctx->UpdateSubresource(buf->GetReal(), 0, NULL, data, (UINT)dataSize, (UINT)dataSize);
}
else
{