diff --git a/Core/GameInstanceManager.cs b/Core/GameInstanceManager.cs index 2a9ab5f0bb..a3942d7c92 100644 --- a/Core/GameInstanceManager.cs +++ b/Core/GameInstanceManager.cs @@ -623,7 +623,7 @@ public IGame DetermineGame(DirectoryInfo path, IUser user) default: // Prompt user to choose int selection = user.RaiseSelectionDialog( - $"Please select the game that is installed at {path}", + $"Please select the game that is installed at {path.FullName.Replace('/', Path.DirectorySeparatorChar)}", matchingGames.Select(g => g.ShortName).ToArray()); return selection >= 0 ? matchingGames[selection] : null; }