summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-08-12 21:26:12 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-11-28 00:01:43 -0500
commite10a7858a0f3720dca1caf3e0f17db720bd69965 (patch)
tree03579076f36f3ed71ea1880e38ba1e6abca13df4 /src/SMAPI
parent3a3688e09448b95f8b412154de743df6b2297fe9 (diff)
downloadSMAPI-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.cs2
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
{