diff --git a/source/PlayniteSDK/Models/Emulator.cs b/source/PlayniteSDK/Models/Emulator.cs index b96f2ee5c..41d43815b 100644 --- a/source/PlayniteSDK/Models/Emulator.cs +++ b/source/PlayniteSDK/Models/Emulator.cs @@ -146,7 +146,7 @@ public bool Equals(EmulatorProfile other) /// public override int GetHashCode() => - (Platforms == null ? 0 : Arguments.GetHashCode()) ^ + (Platforms == null ? 0 : Platforms.GetHashCode()) ^ (ImageExtensions == null ? 0 : ImageExtensions.GetHashCode()) ^ (Executable == null ? 0 : Executable.GetHashCode()) ^ (Arguments == null ? 0 : Arguments.GetHashCode()) ^