diff options
| author | Michael <[email protected]> | 2017-02-05 11:15:50 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-05 11:15:50 -0500 |
| commit | e2f25a92ba34aacc7e7d1f0ccde75d3873d68535 (patch) | |
| tree | 259142e21278ddfd0e6636db3e4b9f97b14cb694 /ShiftOS.WinForms/Oobe.cs | |
| parent | ae7553fa95bd78178c02fac11cf33ea8e0d69cfb (diff) | |
| download | shiftos_thereturn-e2f25a92ba34aacc7e7d1f0ccde75d3873d68535.tar.gz shiftos_thereturn-e2f25a92ba34aacc7e7d1f0ccde75d3873d68535.tar.bz2 shiftos_thereturn-e2f25a92ba34aacc7e7d1f0ccde75d3873d68535.zip | |
Fix tutorial reboot
Diffstat (limited to 'ShiftOS.WinForms/Oobe.cs')
| -rw-r--r-- | ShiftOS.WinForms/Oobe.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Oobe.cs b/ShiftOS.WinForms/Oobe.cs index 14125dc..55aab7e 100644 --- a/ShiftOS.WinForms/Oobe.cs +++ b/ShiftOS.WinForms/Oobe.cs @@ -197,7 +197,10 @@ namespace ShiftOS.WinForms })); SaveSystem.SaveGame(); Thread.Sleep(5000); - SaveSystem.Restart(); + this.Invoke(new Action(() => + { + TutorialManager.StartTutorial(); + })); })); this.Show(); this.BringToFront(); |
