remove comment about copySize
This commit is contained in:
parent
cf3b9d6568
commit
313f948a97
1 changed files with 0 additions and 4 deletions
|
@ -1569,10 +1569,6 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
||||||
|
|
||||||
while (size > 0)
|
while (size > 0)
|
||||||
{
|
{
|
||||||
// Copy chunk size. Previous impl created copies to write using GetSpan(), and moderate sizes
|
|
||||||
// were recommended to avoid allocating very large temporary buffers. Since moving to use
|
|
||||||
// ReadOnlySequence<byte> and reading directly, we set the copySize to the max size of a
|
|
||||||
// segment: Int32.MaxValue.
|
|
||||||
ulong copySize = int.MaxValue;
|
ulong copySize = int.MaxValue;
|
||||||
|
|
||||||
if (copySize > size)
|
if (copySize > size)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue