From c0d10474c50e46df36b17722c42f1377c338edc6 Mon Sep 17 00:00:00 2001 From: Miepee Date: Sat, 14 Jan 2023 02:09:43 +0100 Subject: [PATCH] Add small log message --- AM2RLauncher/AM2RLauncherLib/Profile.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/AM2RLauncher/AM2RLauncherLib/Profile.cs b/AM2RLauncher/AM2RLauncherLib/Profile.cs index a991a60..23e0491 100644 --- a/AM2RLauncher/AM2RLauncherLib/Profile.cs +++ b/AM2RLauncher/AM2RLauncherLib/Profile.cs @@ -759,6 +759,7 @@ public static class Profile string am2rConfigPath = profile.SaveLocation.Replace("~", CrossPlatformOperations.Home) + "/config.ini"; if (!File.Exists(am2rConfigPath)) { + log.Info("Save location does not exist yet for Linux! Creating Directory and File for fullscreen workaround..."); Directory.CreateDirectory(Path.GetDirectoryName(am2rConfigPath)); File.WriteAllText(am2rConfigPath, "[Screen]\nFullscreen=\"0\"\nScale=\"3\""); }