diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-12 21:26:12 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-11-28 00:01:43 -0500 |
commit | e10a7858a0f3720dca1caf3e0f17db720bd69965 (patch) | |
tree | 03579076f36f3ed71ea1880e38ba1e6abca13df4 /src/SMAPI | |
parent | 3a3688e09448b95f8b412154de743df6b2297fe9 (diff) | |
download | SMAPI-e10a7858a0f3720dca1caf3e0f17db720bd69965.tar.gz SMAPI-e10a7858a0f3720dca1caf3e0f17db720bd69965.tar.bz2 SMAPI-e10a7858a0f3720dca1caf3e0f17db720bd69965.zip |
fix error reading console title on Linux with .NET 5
The console title is now write-only on Linux.
Diffstat (limited to 'src/SMAPI')
-rw-r--r-- | src/SMAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index 3e2213ba..0417697b 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -25,7 +25,7 @@ namespace StardewModdingAPI /// <param name="args">The command-line arguments.</param> public static void Main(string[] args) { - Console.Title = $"SMAPI {EarlyConstants.RawApiVersion} - {Console.Title}"; + Console.Title = $"SMAPI {EarlyConstants.RawApiVersion}"; try { |