mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
[gpu] Endian fix
This commit is contained in:
parent
ff65b30ee4
commit
2ab34b5704
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue