Skip to content

Commit

Permalink
Fix: Crash when adding emulator profile #1537
Browse files Browse the repository at this point in the history
  • Loading branch information
JosefNemec committed Nov 22, 2019
1 parent 055085a commit fc1ec4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/PlayniteSDK/Models/Emulator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public bool Equals(EmulatorProfile other)

/// <inheritdoc/>
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()) ^
Expand Down

0 comments on commit fc1ec4e

Please sign in to comment.