diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-07 23:26:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-07 23:26:34 -0400 |
commit | e286e5591b315712909024f79f46c46563b65a56 (patch) | |
tree | 9b04cbe57938508dcd1dcbf1c8fc29cefa67dfcb /src/SMAPI/Framework/Models | |
parent | ecdda9b07798df516d8fd91d9c388b4be5f27230 (diff) | |
download | SMAPI-e286e5591b315712909024f79f46c46563b65a56.tar.gz SMAPI-e286e5591b315712909024f79f46c46563b65a56.tar.bz2 SMAPI-e286e5591b315712909024f79f46c46563b65a56.zip |
enable case-insensitive file paths by default for Android/Linux players
Diffstat (limited to 'src/SMAPI/Framework/Models')
-rw-r--r-- | src/SMAPI/Framework/Models/SConfig.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs index 80d0d9ba..56ab623c 100644 --- a/src/SMAPI/Framework/Models/SConfig.cs +++ b/src/SMAPI/Framework/Models/SConfig.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; using StardewModdingAPI.Internal.ConsoleWriting; +using StardewModdingAPI.Toolkit.Utilities; namespace StardewModdingAPI.Framework.Models { @@ -22,7 +23,7 @@ namespace StardewModdingAPI.Framework.Models [nameof(VerboseLogging)] = false, [nameof(LogNetworkTraffic)] = false, [nameof(RewriteMods)] = true, - [nameof(UsePintail)] = true, + [nameof(UsePintail)] = Constants.Platform is Platform.Android or Platform.Linux, [nameof(UseCaseInsensitivePaths)] = false }; |