0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-02-27 22:31:23 +00:00
This commit is contained in:
codeimp 2008-10-23 11:23:11 +00:00
parent 28172b94bb
commit e382f54955

View file

@ -360,6 +360,7 @@ namespace CodeImp.DoomBuilder.Data
backgroundloader = new Thread(new ThreadStart(BackgroundLoad));
backgroundloader.Name = "Background Loader";
backgroundloader.Priority = ThreadPriority.Lowest;
backgroundloader.IsBackground = true;
backgroundloader.Start();
}