began working on audio system; added Naudio;

This commit is contained in:
2018-11-18 19:09:28 -06:00
parent a4bedd34af
commit 6086c6491b
6 changed files with 143 additions and 7 deletions

View File

@@ -74,8 +74,7 @@ namespace RhythmBullet.Zer01HD.Utilities.ContentSystem
{
if (queue.Count > 0 && (thread == null || !thread.IsAlive))
{
ThreadStart threadStart = new ThreadStart(LoadBatch);
thread = new Thread(threadStart);
thread = new Thread(LoadBatch);
thread.Start();
}
}