[Encore] Fix System Bus endianness
This commit is contained in:
parent
1a1de0fa67
commit
f3629a9e86
|
@ -234,7 +234,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.N3DS
|
|||
|
||||
BulkPeekByte((uint)addresses.Start, MemoryMarshal.AsBytes(values.AsSpan()));
|
||||
|
||||
if (!bigEndian)
|
||||
if (bigEndian)
|
||||
{
|
||||
for (var i = 0; i < values.Length; i++)
|
||||
{
|
||||
|
@ -262,7 +262,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.N3DS
|
|||
|
||||
BulkPeekByte((uint)addresses.Start, MemoryMarshal.AsBytes(values.AsSpan()));
|
||||
|
||||
if (!bigEndian)
|
||||
if (bigEndian)
|
||||
{
|
||||
for (var i = 0; i < values.Length; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue