diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-09-22 18:24:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 18:24:02 -0400 |
commit | 64d4e1d3da3585c5d1e0cbb3bd924f3734d6e182 (patch) | |
tree | b1b934166e857dc789e7904c4d1f46f1b86ab8a9 /src/SMAPI/Framework/SCore.cs | |
parent | e0b3f97f9e7fee838d53f020ec4ddc29a2d194e1 (diff) | |
parent | d5c98bf2df2baff4ed048c35d903424b8e1ce2e2 (diff) | |
download | SMAPI-64d4e1d3da3585c5d1e0cbb3bd924f3734d6e182.tar.gz SMAPI-64d4e1d3da3585c5d1e0cbb3bd924f3734d6e182.tar.bz2 SMAPI-64d4e1d3da3585c5d1e0cbb3bd924f3734d6e182.zip |
Merge pull request #734 from millerscout/feature/performanceTuning
Improve performance of exit handler
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index e64c2801..e2a9463b 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -278,15 +278,16 @@ namespace StardewModdingAPI.Framework ); // add exit handler - new Thread(() => + this.CancellationToken.Token.Register(() => { - this.CancellationToken.Token.WaitHandle.WaitOne(); if (this.IsGameRunning) { + this.inputThread.Abort(); this.LogManager.WriteCrashLog(); this.Game.Exit(); } - }).Start(); + }); + // set window titles this.SetWindowTitles( |