From 8030301739cbb4ddfbe4a68799c27b82cb7ba865 Mon Sep 17 00:00:00 2001 From: Slendy Date: Sat, 18 Feb 2023 15:23:15 -0600 Subject: [PATCH] Fix mismatched game version map --- ProjectLighthouse/Types/Users/GameVersion.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectLighthouse/Types/Users/GameVersion.cs b/ProjectLighthouse/Types/Users/GameVersion.cs index 1cad9a44..4091b6e2 100644 --- a/ProjectLighthouse/Types/Users/GameVersion.cs +++ b/ProjectLighthouse/Types/Users/GameVersion.cs @@ -192,8 +192,8 @@ public static class GameVersionHelper LittleBigPlanet1TitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanet1)); LittleBigPlanet2TitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanet2)); LittleBigPlanet3TitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanet3)); - LittleBigPlanetVitaTitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanetPSP)); - LittleBigPlanetPSPTitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanetVita)); + LittleBigPlanetVitaTitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanetVita)); + LittleBigPlanetPSPTitleIds.ToList().ForEach(x => titleMap.Add(x, GameVersion.LittleBigPlanetPSP)); return titleMap; }