[Encore] Fix System Bus endianness

This commit is contained in:
CasualPokePlayer 2025-01-14 08:01:12 -08:00
parent 1a1de0fa67
commit f3629a9e86
1 changed files with 2 additions and 2 deletions

View File

@ -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++)
{