Merge main to mp_editor_pipeline
This commit is contained in:
@@ -22,7 +22,9 @@ namespace AzNetworking
|
||||
AZ::HashValue32 HashSerializer::GetHash() const
|
||||
{
|
||||
// Just truncate the upper bits
|
||||
return static_cast<AZ::HashValue32>(m_hash);
|
||||
const AZ::HashValue32 lower = static_cast<AZ::HashValue32>(m_hash);
|
||||
const AZ::HashValue32 upper = static_cast<AZ::HashValue32>(m_hash >> 32);
|
||||
return lower ^ upper;
|
||||
}
|
||||
|
||||
SerializerMode HashSerializer::GetSerializerMode() const
|
||||
|
||||
@@ -56,6 +56,6 @@ namespace AzNetworking
|
||||
|
||||
private:
|
||||
|
||||
AZ::HashValue64 m_hash;
|
||||
AZ::HashValue64 m_hash = AZ::HashValue64{ 0 };
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user