PKHeX/Misc/SplashScreen.cs
Kurt cced16dff4 Tidy up splash screen code
Clearer to just have a spinning thread instead of a timer.
2015-09-24 00:01:15 -07:00

23 lines
No EOL
521 B
C#

using System.Threading;
using System.Windows.Forms;
namespace PKHeX
{
public partial class SplashScreen : Form
{
public SplashScreen()
{
InitializeComponent();
new Thread(() =>
{
while (!Main.init)
Thread.Sleep(50);
if (InvokeRequired)
try { Invoke((MethodInvoker)Close); }
catch { Close(); }
else Close();
}).Start();
}
}
}