mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 15:16:25 +02:00
misc: chore: Fix object creation in Memory project
This commit is contained in:
parent
56d373a011
commit
ae92fbf539
3 changed files with 3 additions and 4 deletions
|
@ -14,7 +14,7 @@ namespace Ryujinx.Memory
|
|||
|
||||
public BytesReadOnlySequenceSegment Append(Memory<byte> memory)
|
||||
{
|
||||
BytesReadOnlySequenceSegment nextSegment = new BytesReadOnlySequenceSegment(memory)
|
||||
BytesReadOnlySequenceSegment nextSegment = new(memory)
|
||||
{
|
||||
RunningIndex = RunningIndex + Memory.Length
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue