Fix Clang compilation

This commit is contained in:
Wojtek Figat
2022-10-21 19:32:10 +02:00
parent 52b1b19b02
commit 727d29ee07
2 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ public:
{
uint32 id[4] = { 0 };
if (data)
Platform::MemoryCopy(id, &data->GetID(), sizeof(id));
memcpy(id, &data->GetID(), sizeof(id));
WriteBytes(id, sizeof(id));
}