diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-10-09 18:03:05 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-10-09 18:03:05 -0400 |
commit | 27856ebea25791d2d82a42a670327f6dd5c4ac23 (patch) | |
tree | 2c9ebfbe9897d34c33a5446e21c20a2066ec4ac2 /src/SMAPI/Framework/SCore.cs | |
parent | b78b269cf53529bcb73fa99538a3e9eb23e283b0 (diff) | |
download | SMAPI-27856ebea25791d2d82a42a670327f6dd5c4ac23.tar.gz SMAPI-27856ebea25791d2d82a42a670327f6dd5c4ac23.tar.bz2 SMAPI-27856ebea25791d2d82a42a670327f6dd5c4ac23.zip |
drop UseRawImageLoading option
Raw image loading is now always enabled, except in PyTK compatibility mode.
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 4d6deb15..40979b09 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -1333,8 +1333,7 @@ namespace StardewModdingAPI.Framework onAssetLoaded: this.OnAssetLoaded, onAssetsInvalidated: this.OnAssetsInvalidated, getFileLookup: this.GetFileLookup, - requestAssetOperations: this.RequestAssetOperations, - useRawImageLoading: this.Settings.UseRawImageLoading + requestAssetOperations: this.RequestAssetOperations ); if (this.ContentCore.Language != this.Translator.LocaleEnum) this.Translator.SetLocale(this.ContentCore.GetLocale(), this.ContentCore.Language); |