mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Reverse endianness of achievement memory peeks
rcheevos expects these multi-byte peeks to have the opposite endianness so they need to be swapped before rcheevos gets them.
This commit is contained in:
@ -711,15 +711,17 @@ u32 AchievementManager::MemoryPeeker(u32 address, u32 num_bytes, void* ud)
|
|||||||
.value_or(PowerPC::ReadResult<u8>(false, 0u))
|
.value_or(PowerPC::ReadResult<u8>(false, 0u))
|
||||||
.value;
|
.value;
|
||||||
case 2:
|
case 2:
|
||||||
return m_system->GetMMU()
|
return Common::swap16(
|
||||||
|
m_system->GetMMU()
|
||||||
.HostTryReadU16(threadguard, address, PowerPC::RequestedAddressSpace::Physical)
|
.HostTryReadU16(threadguard, address, PowerPC::RequestedAddressSpace::Physical)
|
||||||
.value_or(PowerPC::ReadResult<u16>(false, 0u))
|
.value_or(PowerPC::ReadResult<u16>(false, 0u))
|
||||||
.value;
|
.value);
|
||||||
case 4:
|
case 4:
|
||||||
return m_system->GetMMU()
|
return Common::swap32(
|
||||||
|
m_system->GetMMU()
|
||||||
.HostTryReadU32(threadguard, address, PowerPC::RequestedAddressSpace::Physical)
|
.HostTryReadU32(threadguard, address, PowerPC::RequestedAddressSpace::Physical)
|
||||||
.value_or(PowerPC::ReadResult<u32>(false, 0u))
|
.value_or(PowerPC::ReadResult<u32>(false, 0u))
|
||||||
.value;
|
.value);
|
||||||
default:
|
default:
|
||||||
ASSERT(false);
|
ASSERT(false);
|
||||||
return 0u;
|
return 0u;
|
||||||
|
Reference in New Issue
Block a user