diff --git a/src/Gml.Launcher/Assets/Resources/ResourceKeysDictionary.Template.cs b/src/Gml.Launcher/Assets/Resources/ResourceKeysDictionary.Template.cs index 5724bce..a81d364 100644 --- a/src/Gml.Launcher/Assets/Resources/ResourceKeysDictionary.Template.cs +++ b/src/Gml.Launcher/Assets/Resources/ResourceKeysDictionary.Template.cs @@ -5,6 +5,7 @@ public static class ResourceKeysDictionary public const string MainPageTitle = "DefaultPageTitle"; public const string DefaultPageTitle = "DefaultPageTitle"; public const string Error = "Error"; + public const string GameProfileError = "GameProfileError"; public const string InvalidFolder = "InvalidFolder"; public const string NotSetting = "NotSetting"; public const string Updating = "Updating"; @@ -14,7 +15,6 @@ public static class ResourceKeysDictionary public const string PlayDRpcText = "PlayDRpcText"; public const string Launching = "Launching"; public const string PreparingLaunch = "PreparingLaunch"; - public const string GameProfileError = "GameProfileError"; public const string CheckingFileIntegrity = "CheckingFileIntegrity"; public const string ProfileNotConfigured = "ProfileNotConfigured"; public const string UpdatingDescription = "UpdatingDescription"; diff --git a/src/Gml.Launcher/ViewModels/Pages/OverviewPageViewModel.cs b/src/Gml.Launcher/ViewModels/Pages/OverviewPageViewModel.cs index ffb8221..eda94d8 100644 --- a/src/Gml.Launcher/ViewModels/Pages/OverviewPageViewModel.cs +++ b/src/Gml.Launcher/ViewModels/Pages/OverviewPageViewModel.cs @@ -235,6 +235,7 @@ private async Task GenerateProcess(CancellationToken cancellationToken, process.ErrorDataReceived += (sender, e) => { + Console.WriteLine(e?.Data); if (!string.IsNullOrEmpty(e.Data) && !e.Data.Contains("[gml-patch]")) { ShowError(ResourceKeysDictionary.GameProfileError, e.Data);