diff --git a/DisplayMagician/ShortcutItem.cs b/DisplayMagician/ShortcutItem.cs index c4849c2..a130cd0 100644 --- a/DisplayMagician/ShortcutItem.cs +++ b/DisplayMagician/ShortcutItem.cs @@ -2080,7 +2080,7 @@ namespace DisplayMagician else if (GameLibrary.Equals(SupportedGameLibraryType.Origin)) { // We now need to get the Uplay Game info - gameLibraryToUse = UplayLibrary.GetLibrary(); + gameLibraryToUse = OriginLibrary.GetLibrary(); } // If the game is a Steam Game we check for that diff --git a/DisplayMagician/ShortcutRepository.cs b/DisplayMagician/ShortcutRepository.cs index f2244b4..d08933a 100644 --- a/DisplayMagician/ShortcutRepository.cs +++ b/DisplayMagician/ShortcutRepository.cs @@ -1062,11 +1062,11 @@ namespace DisplayMagician // We now need to get the Uplay Game info gameLibraryToUse = UplayLibrary.GetLibrary(); } - // If the game is a Uplay Game we check for that + // If the game is an Origin Game we check for that else if (shortcutToUse.GameLibrary.Equals(SupportedGameLibraryType.Origin)) { - // We now need to get the Uplay Game info - gameLibraryToUse = UplayLibrary.GetLibrary(); + // We now need to get the Origin Game info + gameLibraryToUse = OriginLibrary.GetLibrary(); } gameToRun = gameLibraryToUse.GetGameById(shortcutToUse.GameAppId);