[gpu] Endian fix

This commit is contained in:
Ced2911 2013-12-06 13:59:12 +01:00 committed by Unknown W. Brackets
parent ff65b30ee4
commit 2ab34b5704

View file

@ -186,7 +186,7 @@ void GPUgstate::Save(u32_le *ptr) {
}
void GPUgstate::FastLoadBoneMatrix(u32 addr) {
const u32 *src = (const u32 *)Memory::GetPointerUnchecked(addr);
const u32_le *src = (const u32_le *)Memory::GetPointerUnchecked(addr);
u32 num = boneMatrixNumber;
u32 *dst = (u32 *)(boneMatrix + (num & 0x7F));