diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-10-02 01:19:33 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-10-02 01:19:33 -0400 |
commit | 15cd316ce44fb1ca43b29f6087243cc3af2f78fb (patch) | |
tree | 0eae84a89218fb820f79904541c8324ce88fdc1c /src/SMAPI.Mods.SaveBackup/ModEntry.cs | |
parent | b2bcda83d9490987bad36b657f5b55698352830c (diff) | |
download | SMAPI-15cd316ce44fb1ca43b29f6087243cc3af2f78fb.tar.gz SMAPI-15cd316ce44fb1ca43b29f6087243cc3af2f78fb.tar.bz2 SMAPI-15cd316ce44fb1ca43b29f6087243cc3af2f78fb.zip |
fix Save Backup mod on Android
Diffstat (limited to 'src/SMAPI.Mods.SaveBackup/ModEntry.cs')
-rw-r--r-- | src/SMAPI.Mods.SaveBackup/ModEntry.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI.Mods.SaveBackup/ModEntry.cs b/src/SMAPI.Mods.SaveBackup/ModEntry.cs index 845df453..efc6f39f 100644 --- a/src/SMAPI.Mods.SaveBackup/ModEntry.cs +++ b/src/SMAPI.Mods.SaveBackup/ModEntry.cs @@ -73,6 +73,7 @@ namespace StardewModdingAPI.Mods.SaveBackup this.Monitor.Log($"Backing up saves to {targetFile.FullName}...", LogLevel.Trace); switch (Constants.TargetPlatform) { + case GamePlatform.Android: case GamePlatform.Linux: case GamePlatform.Windows: { |