Remove useless GetHashCode

This commit is contained in:
Mary 2022-03-15 23:13:17 +01:00
parent 0f54b79682
commit 168c1753de

View file

@ -69,18 +69,5 @@ namespace Ryujinx.Audio.Renderer.Utils.Math
return m;
}
public override readonly int GetHashCode()
{
HashCode hash = default;
hash.Add(M11);
hash.Add(M12);
hash.Add(M21);
hash.Add(M22);
return hash.ToHashCode();
}
}
}