Actually hang onto thread handles

This commit is contained in:
Greg Edwards 2014-06-09 00:19:09 -04:00
parent 8bbb339fa2
commit dcf397cbbc

View File

@ -67,6 +67,7 @@ namespace PkmnFoundations.GlobalTerminalService
for (int x = 0; x < Threads; x++)
{
Thread t = new Thread(MainLoop);
m_workers.Add(t);
t.Start();
}
}