oops
This commit is contained in:
@@ -153,9 +153,10 @@ namespace OpenRa.Game
|
|||||||
lock (orderBuffers)
|
lock (orderBuffers)
|
||||||
{
|
{
|
||||||
/* accumulate this chunk */
|
/* accumulate this chunk */
|
||||||
if (orderBuffers[frame] == null)
|
if (!orderBuffers.ContainsKey(frame))
|
||||||
orderBuffers[frame] = new List<byte[]>();
|
orderBuffers[frame] = new List<byte[]> { buf };
|
||||||
orderBuffers[frame].Add(buf);
|
else
|
||||||
|
orderBuffers[frame].Add(buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} ) { IsBackground = true }.Start();
|
} ) { IsBackground = true }.Start();
|
||||||
|
|||||||
Reference in New Issue
Block a user