From 168c1753de7497e93cb953cedc412ee2f4a77ba6 Mon Sep 17 00:00:00 2001 From: Mary Date: Tue, 15 Mar 2022 23:13:17 +0100 Subject: [PATCH] Remove useless GetHashCode --- Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs b/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs index 18e3a165b..6093b869e 100644 --- a/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs +++ b/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs @@ -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(); - } } }