summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-10-08 20:52:30 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-10-08 20:52:30 -0400
commit980bc873e76854ec5f0ee4b554f3f5e206358648 (patch)
tree6680d796c967b2dfa2166cf99b2f8865727920bb /src/SMAPI
parent7829df45cbe563ecbf95b84ffbc8cc86e06b1c92 (diff)
downloadSMAPI-980bc873e76854ec5f0ee4b554f3f5e206358648.tar.gz
SMAPI-980bc873e76854ec5f0ee4b554f3f5e206358648.tar.bz2
SMAPI-980bc873e76854ec5f0ee4b554f3f5e206358648.zip
move marker files into smapi-internal (#582)
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Constants.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 97351e8c..1f4e2f1c 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -86,10 +86,10 @@ namespace StardewModdingAPI
internal static string FatalCrashLog => Path.Combine(Constants.LogDir, "SMAPI-crash.txt");
/// <summary>The file path which stores a fatal crash message for the next run.</summary>
- internal static string FatalCrashMarker => Path.Combine(Constants.ExecutionPath, "StardewModdingAPI.crash.marker");
+ internal static string FatalCrashMarker => Path.Combine(Constants.InternalFilesPath, "StardewModdingAPI.crash.marker");
/// <summary>The file path which stores the detected update version for the next run.</summary>
- internal static string UpdateMarker => Path.Combine(Constants.ExecutionPath, "StardewModdingAPI.update.marker");
+ internal static string UpdateMarker => Path.Combine(Constants.InternalFilesPath, "StardewModdingAPI.update.marker");
/// <summary>The full path to the folder containing mods.</summary>
internal static string DefaultModsPath { get; } = Path.Combine(Constants.ExecutionPath, "Mods");