summaryrefslogtreecommitdiff
path: root/src/SMAPI/Patches/TitleMenuPatcher.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Patches/TitleMenuPatcher.cs')
-rw-r--r--src/SMAPI/Patches/TitleMenuPatcher.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Patches/TitleMenuPatcher.cs b/src/SMAPI/Patches/TitleMenuPatcher.cs
index b4320ce0..18f1a830 100644
--- a/src/SMAPI/Patches/TitleMenuPatcher.cs
+++ b/src/SMAPI/Patches/TitleMenuPatcher.cs
@@ -17,7 +17,7 @@ namespace StardewModdingAPI.Patches
** Fields
*********/
/// <summary>A callback to invoke when the load stage changes.</summary>
- private static Action<LoadStage> OnStageChanged;
+ private static Action<LoadStage> OnStageChanged = null!; // initialized in constructor
/*********