diff --git a/Lib/Launchpad/DetectedGame/DetectedGame.ahk b/Lib/Launchpad/DetectedGame/DetectedGame.ahk index 46c1029c..861613e0 100644 --- a/Lib/Launchpad/DetectedGame/DetectedGame.ahk +++ b/Lib/Launchpad/DetectedGame/DetectedGame.ahk @@ -50,13 +50,13 @@ class DetectedGame { UpdateLauncher(launcher) { modified := false - if (launcher.Platform != this.platform.key) { - launcher.Platform := this.platform.key + if (this.displayName && this.key != this.displayName && launcher.DisplayName != this.displayName) { + launcher.DisplayName := this.displayName modified := true } - if (this.displayName && launcher.DisplayName != this.displayName) { - launcher.DisplayName := this.displayName + if (launcher.Platform != this.platform.key) { + launcher.Platform := this.platform.key modified := true }